/* === BASE STYLES === */:root {
            --primary: #00D9FF;
            --secondary: #FF006B;
            --accent: #FFD600;
            --dark: #0A0E27;
            --dark-alt: #141937;
            --light: #F8F9FA;
            --success: #00FF94;
            --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
            --gradient-2: linear-gradient(135deg, #FF006B 0%, #FF6B00 100%);
            --gradient-3: linear-gradient(135deg, #FFD600 0%, #FF006B 100%);
            --gradient-cyber: linear-gradient(135deg, #00D9FF 0%, #FF006B 50%, #FFD600 100%);
        }

        * {
            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(--light);
            line-height: 1.6;
        }

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

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

        h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            background: var(--gradient-cyber);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3rem);
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

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

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

        h4 {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: var(--light);
        }

        p {
            margin-bottom: 1rem;
            color: rgba(248, 249, 250, 0.9);
        }

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

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

        .btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            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: 44px;
            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: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

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

        .btn-primary {
            background: var(--gradient-2);
            color: white;
            box-shadow: 0 8px 30px rgba(255, 0, 107, 0.4);
        }

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

        .cta-button {
            background: var(--gradient-2);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(255, 0, 107, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 0, 107, 0.6);
            color: white;
        }

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

        .card {
            background: var(--dark-alt);
            border: 2px solid rgba(0, 217, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-cyber);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
        }

        .card:hover::before {
            opacity: 1;
        }

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

        .content-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 16px;
            border: 2px solid rgba(0, 217, 255, 0.3);
        }

        .content-image.portrait img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .content-image.wide img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .content-image figcaption {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: rgba(248, 249, 250, 0.7);
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

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

        table thead {
            background: var(--gradient-1);
        }

        table th {
            padding: 1.2rem;
            text-align: left;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        table td {
            padding: 1.2rem;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            color: rgba(248, 249, 250, 0.9);
        }

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

        ul, ol {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.8rem;
            color: rgba(248, 249, 250, 0.9);
        }

        section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            z-index: 0;
        }

        section:nth-child(odd)::before {
            top: -200px;
            left: -200px;
            background: var(--primary);
        }

        section:nth-child(even)::before {
            bottom: -200px;
            right: -200px;
            background: var(--secondary);
        }

        section > .container {
            position: relative;
            z-index: 1;
        }

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

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

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

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

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

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

        .nav-menu a {
            color: var(--light);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-menu a:hover {
            background: rgba(0, 217, 255, 0.1);
            color: var(--primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--primary);
            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(8px, -8px);
        }

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

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

        .footer-section h3, .footer-section h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

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

        .footer-section li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(248, 249, 250, 0.8);
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

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

        .responsible-gaming-logos img {
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .responsible-gaming-logos img:hover {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            color: rgba(248, 249, 250, 0.6);
        }

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

            nav {
                order: 3;
                width: 100%;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0;
                gap: 0.5rem;
            }

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

            .hamburger {
                display: flex;
            }

            header .cta-button {
                font-size: 0.9rem;
                padding: 12px 24px;
                white-space: nowrap;
                max-width: 200px;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }

        @media (max-width: 767px) {
            header .container {
                gap: 1rem;
            }

            .logo img {
                height: 40px;
            }

            header .cta-button {
                order: 2;
                font-size: 0.85rem;
                padding: 10px 20px;
            }
        }

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

            nav {
                order: 3;
                width: 100%;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0;
                gap: 0.5rem;
            }

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

            .hamburger {
                display: flex;
            }

            header .cta-button {
                font-size: 0.9rem;
                padding: 12px 24px;
                white-space: nowrap;
                max-width: 200px;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }

@media (max-width: 767px) {
            header .container {
                gap: 1rem;
            }

            .logo img {
                height: 40px;
            }

            header .cta-button {
                order: 2;
                font-size: 0.85rem;
                padding: 10px 20px;
            }
        }

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

            .hero-section .cta-button {
                font-size: 1.1rem;
                padding: 16px 40px;
            }

            .timeline-item {
                grid-template-columns: 1fr;
            }

            .timeline-marker {
                width: 100%;
                max-width: 60px;
                margin: 0 auto;
            }

            .timeline-content {
                padding-left: 0;
                border-left: none;
                border-top: 3px solid rgba(0, 217, 255, 0.3);
                padding-top: 2rem;
            }

            .feature-list li {
                padding-left: 2.5rem;
            }

            .feature-list li::before {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }

            .numbered-list li {
                padding-left: 3rem;
            }

            .numbered-list li::before {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .cta-section .cta-button {
                font-size: 1.1rem;
                padding: 16px 40px;
            }

            table th, table td {
                padding: 0.8rem;
                font-size: 0.9rem;
            }
        }