:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --dark: #121826;
            --light: #f8f9fa;
            --accent: #ff4d94;
            --gray: #6c757d;
            --success: #00b894;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(18, 24, 38, 0.95);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 0.5rem 0;
            background-color: var(--dark);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: #ddd !important;
            margin: 0 10px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent) !important;
        }
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
            color: white;
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
        }
        .hero::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') no-repeat center center/cover;
            opacity: 0.15;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #6a11cb, #2575fc, #ff4d94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card-game {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            height: 100%;
        }
        .card-game:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(106, 17, 203, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card-game:hover .card-img-top {
            transform: scale(1.05);
        }
        .badge-platform {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            position: absolute;
            top: 15px;
            right: 15px;
        }
        .icon-feature {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            background: #f8f9fa;
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 50px;
            margin: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .flink:hover {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(106, 17, 203, 0.2);
            text-decoration: none;
        }
        footer {
            background-color: var(--dark);
            color: #bbb;
            padding-top: 4rem;
        }
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-link {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--accent);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #888;
        }
        .btn-gradient {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
            color: white;
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            margin: 15px;
            height: 100%;
            border-left: 5px solid var(--primary);
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .client-logo {
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 140px 0 80px;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        .news-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
            border: none;
        }
        .news-card:hover {
            transform: translateY(-10px);
        }
        .news-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
