:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #6a11cb;
            --secondary-accent: #2575fc;
            --highlight: #ff6b6b;
            --light-bg: #f8f9fa;
            --text-light: #e6e6e6;
            --text-dark: #333;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #16213e 100%);
            color: var(--text-light);
            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') center/cover no-repeat;
            opacity: 0.15;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            border-radius: 2px;
        }
        .service-card, .game-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #eee;
        }
        .service-card:hover, .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(106, 17, 203, 0.15);
            border-color: var(--primary-accent);
        }
        .service-icon, .game-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .team-member {
            text-align: center;
            padding: 1.5rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 5px solid #f0f0f0;
        }
        .contact-info-box {
            background: linear-gradient(135deg, var(--primary-dark), #16213e);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            height: 100%;
        }
        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
            color: white;
        }
        .footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        .flink {
            color: #aaa;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s;
            display: inline-block;
            margin: 0.25rem;
            background: rgba(255,255,255,0.05);
        }
        .flink:hover {
            color: white;
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-left: 5px solid var(--primary-accent);
        }
        .testimonial-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
