:root {
            --primary-red: #c62828;
            --dark-red: #8e0000;
            --light-red: #ff5f52;
            --dark-bg: #121212;
            --darker-bg: #0a0a0a;
            --light-bg: #f8f9fa;
            --text-light: #e0e0e0;
            --text-muted: #b0b0b0;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        .section-header {
            border-left: 5px solid var(--primary-red);
            padding-left: 20px;
            margin-bottom: 3rem;
        }
        .section-header h2 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .navbar {
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(198, 40, 40, 0.2);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-red) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--text-light) !important;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 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;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        .btn-primary-custom {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary-custom:hover {
            background-color: var(--dark-red);
            border-color: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
        }
        .game-card {
            background: var(--darker-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(198, 40, 40, 0.2);
            border-color: rgba(198, 40, 40, 0.3);
        }
        .game-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(198, 40, 40, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-red);
            font-size: 1.8rem;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-member img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--darker-bg);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .team-member:hover img {
            border-color: var(--primary-red);
        }
        .flink {
            display: inline-block;
            background: var(--darker-bg);
            padding: 10px 25px;
            margin: 8px;
            border-radius: 30px;
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .flink:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--darker-bg);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            color: var(--primary-red);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: var(--text-muted);
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-red);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-red);
            border: 3px solid var(--dark-bg);
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .section-header {
                margin-bottom: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
