/* === BASE STYLES === */
header .container {
    gap: 0.1rem;
}

.accordion-body {
    padding: 0 1.5rem 0.3rem 1.5rem !important;
}

:root {
            --primary: #FF3366;
            --primary-dark: #CC0044;
            --secondary: #00D9FF;
            --secondary-dark: #00A3CC;
            --accent: #FFD700;
            --dark: #0A0E27;
            --dark-surface: #151B3B;
            --dark-card: #1E2749;
            --text-light: #FFFFFF;
            --text-muted: #B8C5D6;
            --success: #00FF88;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FFA500 100%);
            --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-surface) 100%);
            --shadow-sm: 0 2px 8px rgba(255, 51, 102, 0.15);
            --shadow-md: 0 8px 24px rgba(255, 51, 102, 0.25);
            --shadow-lg: 0 16px 48px rgba(255, 51, 102, 0.35);
            --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark);
            color: var(--text-light);
            line-height: 1.7;
            font-size: 17px;
        }

        .container {
            max-width: 1320px;
            padding: 0 20px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.25rem;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--text-light);
            position: relative;
            padding-bottom: 1rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            color: var(--secondary);
            margin-top: 2.5rem;
        }

        h4 {
            font-size: clamp(1.25rem, 2vw, 1.75rem);
            color: var(--text-light);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-muted);
        }

        a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        a:hover {
            color: var(--accent);
        }

        .btn {
            padding: 16px 42px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--text-light);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            color: var(--text-light);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(1.01);
        }

        .card {
            background: var(--dark-card);
            border: 1px solid rgba(0, 217, 255, 0.15);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .content-image {
            max-width: 100%;
            margin: 1.5rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        table {
            width: 100%;
            background: var(--dark-card);
            border-collapse: separate;
            border-spacing: 0;
        }

        th, td {
            padding: 1rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        th {
            background: var(--gradient-primary);
            color: var(--text-light);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.875rem;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover td {
            background: rgba(0, 217, 255, 0.05);
        }

        /* === LAYOUT STYLES === */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            max-height: 50px;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
        }

        .site-header .main-nav {
            display: flex;
            justify-content: center;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-list a {
            color: var(--text-muted);
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-list a:hover {
            color: var(--secondary);
        }

        .nav-list a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .header-content .cta-button {
            flex-shrink: 0;
            padding: 12px 28px;
            font-size: 16px;
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .site-footer {
            background: var(--gradient-dark);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            margin-top: 6rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-info p {
            color: var(--text-muted);
            margin-top: 1rem;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-nav a {
            color: var(--text-muted);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .disclaimer {
            margin-top: 0.5rem;
            opacity: 0.7;
        }

        @media (max-width: 991px) {
            .nav-list {
                gap: 1.5rem;
            }

            .nav-list a {
                font-size: 15px;
            }
        }

        @media (max-width: 767px) {
            .header-content {
                flex-wrap: wrap;
            }

            .site-header .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .site-header .main-nav.active {
                max-height: 400px;
            }

            .site-header .nav-list {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }

            .site-header .nav-list li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            }

            .site-header .nav-list a {
                display: block;
                padding: 1rem 0;
            }

            .hamburger {
                display: flex;
            }

            .header-content .cta-button {
                width: 100%;
                max-width: 100%;
                margin-top: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

@media (max-width: 767px) {
            section {
                padding: 4rem 0;
            }

            .hero-section {
                padding: 5rem 0 4rem;
            }

            .hero-section::before,
            .hero-section::after {
                width: 300px;
                height: 300px;
            }

            .nav-grid {
                grid-template-columns: 1fr;
            }

            .nav-card {
                padding: 1.5rem;
            }

            .games-grid, .scratch-games-list, .vip-levels {
                grid-template-columns: 1fr;
            }

            .tab-content {
                padding: 2rem 1.5rem;
            }

            .accordion-header {
                padding: 1.5rem;
            }

            .accordion-body.active {
                padding: 0 1.5rem 1.5rem;
            }

            .cta-section {
                padding: 4rem 0;
            }
        }