:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a73e8;
            --accent-purple: #8a2be2;
            --accent-cyan: #00d4ff;
            --text-light: #f8f9fa;
            --text-gray: #adb5bd;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1f3a 100%);
        }
        .hero-section {
            min-height: 100vh;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070') center/cover no-repeat;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(10, 14, 23, 0.85);
        }
        .nav-shadow {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
            border-radius: 2px;
        }
        .service-card, .game-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover, .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
            border-color: var(--accent-cyan);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(26, 115, 232, 0.2);
            color: var(--text-light);
            border-color: var(--primary-blue);
        }
        .btn-glow {
            background: linear-gradient(90deg, var(--accent-purple), var(--primary-blue));
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
        }
        .btn-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-cyan), var(--text-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        footer a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-cyan);
        }
        .timeline-item {
            border-left: 3px solid var(--primary-blue);
            padding-left: 2rem;
            padding-bottom: 2rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent-cyan);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .schema-ld {
            display: none;
        }
