:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5af9;
            --primary-purple: #7c3aed;
            --accent-teal: #2dd4bf;
            --light-bg: #f8fafc;
            --text-light: #e2e8f0;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--light-bg);
            color: #334155;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
            border-radius: 2px;
        }
        .game-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 16px;
            overflow: hidden;
            background: white;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: white;
            border-radius: 50px;
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            margin: 0.5rem;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-blue);
        }
        .flink i {
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-teal);
        }
        .btn-iconic {
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-iconic:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 90, 249, 0.3);
            color: white;
        }
        footer {
            background: var(--primary-dark);
            color: var(--text-light);
        }
        .footer-link {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--accent-teal);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .process-step {
            position: relative;
            padding: 2rem;
            border-radius: 16px;
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        .process-step:hover {
            transform: translateY(-5px);
        }
        .process-step::before {
            content: attr(data-step);
            position: absolute;
            top: -20px;
            left: 30px;
            background: var(--primary-blue);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--primary-blue);
        }
        @media (max-width: 768px) {
            .hero-heading {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.25rem;
            }
            .flink {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
