:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #4e31aa;
            --secondary-accent: #00adb5;
            --light-bg: #f8f9fa;
            --text-dark: #222831;
            --text-light: #eeeeee;
        }
        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;
            color: var(--primary-accent) !important;
        }
        .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;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(78, 49, 170, 0.1);
            top: -100px;
            right: -100px;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 2px;
        }
        .service-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            background: white;
        }
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-accent);
            margin-bottom: 1.5rem;
        }
        .team-member {
            text-align: center;
            transition: transform 0.3s ease;
        }
        .team-member:hover {
            transform: scale(1.03);
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 6px solid #f1f1f1;
            margin: 0 auto 1.5rem;
        }
        .contact-info-box {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border-left: 5px solid var(--secondary-accent);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #495057;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary-accent);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-accent);
        }
        .footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        .game-showcase {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-accent);
            line-height: 1;
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(78, 49, 170, 0.3);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
            left: 10%;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
                text-align: center;
            }
            .section-title {
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .team-img {
                width: 140px;
                height: 140px;
            }
        }
