/* === BASE STYLES === */:root {
            --primary: #FF0080;
            --primary-dark: #D6006A;
            --secondary: #9D4EDD;
            --secondary-dark: #7B2CBF;
            --accent: #FF0080;
            --dark: #0F0A1E;
            --dark-alt: #1A0F2E;
            --light: #F8F9FA;
            --text: #FFFFFF;
            --text-muted: #B8B9C0;
            --gradient-1: linear-gradient(135deg, #FF0080 0%, #FF0080 100%);
            --gradient-2: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
            --shadow-sm: 0 2px 8px rgba(255, 0, 128, 0.15);
            --shadow-md: 0 4px 16px rgba(255, 0, 128, 0.25);
            --shadow-lg: 0 8px 32px rgba(255, 0, 128, 0.35);
        }

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

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

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

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

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(32px, 5vw, 64px);
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(28px, 4vw, 48px);
            color: var(--text);
        }

        h3 {
            font-size: clamp(22px, 3vw, 32px);
            color: var(--secondary);
        }

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

        a {
            color: #00D9FF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }

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

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 22, 84, 0.5);
        }

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

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

        .card.full-width {
            grid-column: 1 / -1;
        }

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

        .content-image.full-width {
            grid-column: 1 / -1;
        }

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

        .content-image.full-width img {
            max-height: none;
            width: 100%;
        }

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

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

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

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

        th {
            background: var(--primary);
            color: var(--text);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
        }

        td {
            color: var(--text-muted);
        }

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

        /* === 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(0, 217, 255, 0.1);
            padding: 1rem 0;
        }

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

        .logo img {
            height: 50px;
            width: auto;
        }

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

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

        .nav-list a {
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            padding: 8px 0;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            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 {
            display: block;
            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);
        }

        .cta-button {
            white-space: nowrap;
        }

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 14px;
        }

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

        .responsible-gaming-logos {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .responsible-gaming-logos img {
            height: 50px;
            width: auto;
            opacity: 0.7;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }

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

            .logo {
                order: 1;
            }

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

            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 0;
                display: none;
                background: var(--dark-alt);
                border-radius: 12px;
                padding: 1rem 0;
            }

            .nav-list.active {
                display: flex;
            }

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 1rem 1.5rem;
            }

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

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

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

            .logo {
                order: 1;
            }

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

            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 0;
                display: none;
                background: var(--dark-alt);
                border-radius: 12px;
                padding: 1rem 0;
            }

            .nav-list.active {
                display: flex;
            }

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 1rem 1.5rem;
            }

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

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

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

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

            .cards-grid,
            .highlight-boxes-grid {
                grid-template-columns: 1fr;
            }

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

            .timeline-item {
                padding-left: 2rem;
            }

            .feature-block {
                padding: 1.5rem;
            }

            .tabs-nav {
                gap: 0.5rem;
            }

            .tab-button {
                padding: 10px 20px;
                font-size: 14px;
            }

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

            .accordion-header h3 {
                font-size: 16px;
            }

            .cta-section {
                padding: 3rem 1.5rem;
            }

            th, td {
                padding: 0.75rem;
                font-size: 14px;
            }
        }