:root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0fcc45;
            --light-color: #e6e6e6;
            --dark-color: #0d0d1a;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--light-color);
            background-color: var(--primary-color);
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(13, 13, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(15, 204, 69, 0.3);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            color: var(--accent-color) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--light-color) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 13, 26, 0.85), rgba(22, 33, 62, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #0fcc45, #4dfc7a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
        }
        .section-title {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
        }
        .card {
            background-color: var(--secondary-color);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(15, 204, 69, 0.15);
        }
        .card-title {
            color: var(--accent-color);
        }
        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            color: var(--dark-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #0db33a;
            transform: scale(1.05);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 3px solid var(--accent-color);
            border-radius: 50%;
        }
        .footer {
            background-color: var(--dark-color);
            border-top: 1px solid rgba(15, 204, 69, 0.3);
        }
        .flink {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            padding: 8px 15px;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.05);
            display: inline-block;
            margin: 5px;
        }
        .flink:hover {
            color: var(--accent-color);
            background-color: rgba(15, 204, 69, 0.1);
        }
        .game-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }
        .game-card img {
            transition: transform 0.5s;
        }
        .game-card:hover img {
            transform: scale(1.1);
        }
        .contact-info i {
            color: var(--accent-color);
            width: 30px;
        }
        .progress {
            height: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            margin-bottom: 1rem;
        }
        .progress-bar {
            background-color: var(--accent-color);
            border-radius: 5px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
