:root {
            --primary: #0d6efd;
            --secondary: #6610f2;
            --dark: #212529;
            --light: #f8f9fa;
            --accent: #ff6b35;
            --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
            --gradient-dark: linear-gradient(135deg, #212529 0%, #343a40 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: var(--gradient-dark) url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 50%;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 300px;
            margin-bottom: 30px;
        }
        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .game-card:hover .game-overlay {
            transform: translateY(0);
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #f1f1f1;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        .contact-info {
            background: var(--gradient-primary);
            color: white;
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        .footer {
            background: var(--gradient-dark);
            color: white;
            padding: 60px 0 20px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            margin: 5px;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        .stats-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(33, 37, 41, 0.95);
            backdrop-filter: blur(10px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .stats-number {
                font-size: 2rem;
            }
            .contact-info {
                margin-bottom: 30px;
            }
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-primary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary);
        }
