:root {
            --primary: #6f42c1;
            --primary-dark: #5a32a3;
            --secondary: #20c997;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary) !important;
        }
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(111, 66, 193, 0.2);
        }
        .btn-outline-light:hover {
            color: var(--primary);
        }
        .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: var(--secondary);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        .service-icon, .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .game-card img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .testimonial-card {
            border-left: 4px solid var(--secondary);
        }
        .contact-info i {
            color: var(--primary);
            font-size: 1.5rem;
        }
        footer {
            background-color: var(--dark);
            color: #ccc;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            margin: 0.3rem;
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 5rem 0;
            }
        }
