:root {
            --primary: #0d1b2a;
            --secondary: #1b3a4b;
            --accent: #00b4d8;
            --light: #e0e1dd;
            --dark: #0a0f14;
            --success: #2a9d8f;
            --warning: #e9c46a;
            --danger: #e63946;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background-color: var(--dark);
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            position: relative;
        }
        .game-card {
            background: var(--secondary);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 180, 216, 0.2);
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 180, 216, 0.3);
        }
        .btn-primary {
            background-color: var(--accent);
            border-color: var(--accent);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #0093b3;
            border-color: #0093b3;
            transform: scale(1.05);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 180, 216, 0.1);
        }
        .flink:hover {
            background: rgba(0, 180, 216, 0.2);
            color: var(--accent);
            transform: translateY(-3px);
            text-decoration: none;
        }
        .footer {
            background-color: var(--primary);
            padding: 60px 0 30px;
            border-top: 2px solid var(--accent);
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            color: var(--accent);
            margin-right: 10px;
            width: 20px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--accent);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--accent);
            border: 3px solid var(--dark);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Orbitron', sans-serif;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
            margin-bottom: 20px;
        }
        .news-card {
            background: var(--secondary);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 4px solid var(--accent);
        }
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .award-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
