/* === BASE STYLES === */:root {
            --primary: #FF2E63;
            --secondary: #08D9D6;
            --accent: #FFD23F;
            --dark: #0A0E27;
            --dark-navy: #151B3B;
            --gradient-primary: linear-gradient(135deg, #FF2E63 0%, #FF6B9D 100%);
            --gradient-secondary: linear-gradient(135deg, #08D9D6 0%, #00FFF0 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #151B3B 100%);
            --shadow-sm: 0 2px 8px rgba(255, 46, 99, 0.15);
            --shadow-md: 0 8px 24px rgba(255, 46, 99, 0.25);
            --shadow-lg: 0 16px 48px rgba(255, 46, 99, 0.35);
            --shadow-glow: 0 0 30px rgba(8, 217, 214, 0.4);
        }

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

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: #E8E8E8;
            line-height: 1.7;
        }

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

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: #fff;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--secondary);
        }

        p {
            font-size: 1.125rem;
            color: #C4C4C4;
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
            color: inherit;
        }

        .btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-width: 200px;
            text-align: center;
        }

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

        .btn-primary::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;
        }

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

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

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-2px);
        }

        .card {
            background: var(--dark-navy);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 46, 99, 0.1);
            
        }

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

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-navy);
        }

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

        th {
            background: var(--gradient-primary);
            color: #fff;
            font-weight: 600;
        }

        .content-image {
            max-width: 100%;
            margin: 2.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-lg);
            border: 2px solid rgba(8, 217, 214, 0.3);
        }

        .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: 1rem;
            font-size: 0.875rem;
            opacity: 0.7;
            color: var(--secondary);
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 46, 99, 0.2);
            padding: 1rem 0;
        }

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

        .logo img {
            max-height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

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

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

        .nav-list a {
            color: #E8E8E8;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

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

        header .cta-button {
            padding: 12px 32px;
            font-size: 1rem;
            min-width: unset;
            white-space: nowrap;
        }

        footer {
            background: var(--gradient-dark);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
            border-top: 2px solid rgba(255, 46, 99, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            align-items: start;
        }

        .footer-logo img {
            height: 42px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
        }

        .footer-nav li {
            margin-bottom: 0.75rem;
        }

        .footer-nav a {
            color: #C4C4C4;
            font-size: 0.95rem;
        }

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

        .footer-info {
            text-align: right;
        }

        .footer-info p {
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

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

            .logo {
                order: 1;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            header .cta-button {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                max-width: 100%;
                text-overflow: ellipsis;
                overflow: hidden;
            }

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

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

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

            .nav-list a {
                display: block;
                padding: 0.75rem 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

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

            .logo {
                order: 1;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            header .cta-button {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                max-width: 100%;
                text-overflow: ellipsis;
                overflow: hidden;
            }

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

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

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

            .nav-list a {
                display: block;
                padding: 0.75rem 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

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

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            p {
                font-size: 1rem;
            }

            .hero-section {
                min-height: 70vh;
                padding: 4rem 0;
            }

            .hero-section p {
                font-size: 1.125rem;
            }

            .btn {
                padding: 14px 30px;
                font-size: 1rem;
                min-width: unset;
            }

            .card {
                padding: 1.5rem;
            }

            .table-of-contents {
                padding: 2rem 1.5rem;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 60px;
            }

            .timeline-item::before {
                left: 11px;
            }

            .feature-grid, .cards-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .game-category, .support-block, .provider-info {
                padding: 1.5rem;
            }

            .advantage-card {
                padding: 1.5rem;
            }

            .accordion-header {
                padding: 1.25rem 1.5rem;
                font-size: 1rem;
            }

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

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

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

            .cta-section p {
                font-size: 1.125rem;
            }

            .cta-section .btn-primary {
                font-size: 1.125rem;
                padding: 16px 40px;
            }
        }

    @media screen and (max-width: 768px) {
        table {
            display: block !important;
            overflow: scroll !important;
        }
    }

    .cta-button {
        background: var(--gradient-primary);
        color: #fff;
        box-shadow: var(--shadow-md);
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.125rem;
        border: none;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: inline-block;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 200px;
        text-align: center;
        text-decoration: none;
    }

    .cta-button::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;
    }

    .cta-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-lg), var(--shadow-glow);
        color: #fff;
    }

    .cta-button:hover::before {
        left: 100%;
    }