:root {
            --primary-dark: #0a1128;
            --primary-blue: #1a5fb4;
            --accent-cyan: #26c6da;
            --accent-purple: #7c3aed;
            --light-bg: #f8fafc;
            --text-light: #e2e8f0;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-content { position: relative; z-index: 2; }
        .section-title {
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            color: var(--primary-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 2px;
        }
        .service-card, .game-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            height: 100%;
            background: white;
        }
        .service-card:hover, .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(26, 95, 180, 0.15);
        }
        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stats-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-cyan), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .team-card {
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .team-card:hover {
            transform: scale(1.03);
        }
        .team-card img {
            height: 280px;
            object-fit: cover;
            object-position: top;
        }
        .contact-form .form-control {
            border-radius: 12px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 95, 180, 0.25);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        footer a {
            color: #a5b4cb;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            color: #a5b4cb;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .game-card img {
            height: 220px;
            object-fit: cover;
            object-position: center;
        }
        .btn-primary {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 95, 180, 0.3);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 6rem 0 4rem; }
            .stat-number { font-size: 2.5rem; }
            .section-title { font-size: 1.8rem; }
        }
