/* ============================================
   Push Gaming Website - CSS Styles
   Responsive Design for Mobile, Tablet, Desktop
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   2. CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    flex: 0 0 auto;
}

.logo-link {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-link:hover {
    color: #c0392b;
}

.logo-text {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav {
    flex: 1;
    display: none;
    justify-content: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e74c3c;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: #f8f9fa;
    border-left-color: #e74c3c;
    color: #e74c3c;
}

/* ============================================
   4. HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 40px 0;
    }
}

.hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #e74c3c;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================
   5. SECTION STYLES
   ============================================ */

section {
    padding: 50px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

@media (min-width: 768px) {
    section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .section-intro {
        margin-bottom: 60px;
        font-size: 18px;
    }
}

/* ============================================
   6. CASINO SHOWCASE SECTION
   ============================================ */

.casinos {
    background-color: #fff;
}

.casino-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.casino-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.casino-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #f39c12;
    font-size: 16px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.casino-bonus {
    background-color: #fff3cd;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.bonus-value {
    color: #e74c3c;
    font-weight: 700;
    font-size: 14px;
}

.casino-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.casino-features {
    list-style: none;
    margin-bottom: 20px;
    font-size: 13px;
}

.casino-features li {
    padding: 5px 0;
    color: #555;
}

.casino-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.casino-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* ============================================
   7. CONTENT SECTION
   ============================================ */

.content {
    background-color: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr 280px;
    }
}

.main-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.main-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.main-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.main-content a {
    color: #e74c3c;
    font-weight: 500;
}

.main-content a:hover {
    text-decoration: underline;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.features-list strong {
    color: #333;
}

/* ============================================
   8. SIDEBAR
   ============================================ */

.sidebar {
    display: none;
}

@media (min-width: 768px) {
    .sidebar {
        display: block;
    }
}

.sidebar-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.sidebar-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.game-links {
    list-style: none;
}

.game-links li {
    margin-bottom: 10px;
}

.game-links a {
    display: block;
    padding: 10px 12px;
    background-color: #fff;
    border-left: 3px solid transparent;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
}

.game-links a:hover,
.game-links a.active {
    background-color: #fff3cd;
    border-left-color: #e74c3c;
    color: #e74c3c;
    font-weight: 600;
}

/* ============================================
   9. GAMES SECTION
   ============================================ */

.games {
    background-color: #f8f9fa;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.game-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-card-more .game-image {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.more-icon {
    font-size: 48px;
    color: #fff;
    font-weight: 300;
}

.game-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: #333;
}

.game-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ============================================
   10. GAME EMBED SECTION
   ============================================ */

.game-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

@media (min-width: 768px) {
    .game-hero {
        padding: 60px 0;
    }
}

.game-hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .game-hero h1 {
        font-size: 36px;
    }
}

.game-subtitle {
    font-size: 14px;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .game-subtitle {
        font-size: 16px;
    }
}

.game-embed {
    background-color: #fff;
    padding: 30px 0;
}

@media (min-width: 768px) {
    .game-embed {
        padding: 50px 0;
    }
}

.embed-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-iframe {
    border: none;
    display: block;
    width: 100%;
    min-height: 400px;
}

@media (min-width: 768px) {
    .game-iframe {
        min-height: 600px;
    }
}

.game-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Game Specifications Table */
.game-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
}

.game-specs tr {
    border-bottom: 1px solid #e0e0e0;
}

.game-specs tr:last-child {
    border-bottom: none;
}

.game-specs td {
    padding: 12px 15px;
    font-size: 14px;
}

.game-specs td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.game-specs td:last-child {
    color: #666;
}

@media (min-width: 768px) {
    .game-specs td {
        padding: 15px 20px;
    }
}

/* ============================================
   11. FAQ SECTION
   ============================================ */

.faq {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 16px;
    }
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 20px;
    color: #e74c3c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .faq-answer {
        font-size: 15px;
    }
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   12. FOOTER
   ============================================ */

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 250px;
    }
}

.footer-main h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-main p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    font-style: italic;
}

.footer-sidebar h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-game-links {
    list-style: none;
}

.footer-game-links li {
    margin-bottom: 10px;
}

.footer-game-links a {
    color: #ecf0f1;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-game-links a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #95a5a6;
}

.footer-bottom a {
    color: #ecf0f1;
}

.footer-bottom a:hover {
    color: #e74c3c;
}

/* ============================================
   13. RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 22px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

/* ============================================
   14. UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ============================================
   15. ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   16. PRINT STYLES
   ============================================ */

@media print {
    .header,
    .footer,
    .mobile-menu-btn,
    .sidebar {
        display: none;
    }

    body {
        background-color: #fff;
    }

    a {
        color: inherit;
    }
}
