:root {
            --primary: #0f172a;
            --secondary: #1e293b;
            --accent: #3b82f6;
            --accent-light: #60a5fa;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --highlight: #f59e0b;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }
        .display-1, .display-2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--highlight);
        }
        .btn-primary {
            background-color: var(--accent);
            border-color: var(--accent);
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--highlight);
            border-color: var(--highlight);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
        }
        .section-padding {
            padding: 100px 0;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
            z-index: 0;
        }
        .navbar {
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--text-primary) !important;
        }
        .navbar-brand span {
            color: var(--accent);
        }
        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 6px;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--text-primary) !important;
            background-color: rgba(59, 130, 246, 0.1);
        }
        .feature-card {
            background: var(--secondary);
            border-radius: 16px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 32px;
            color: white;
        }
        .game-card {
            border-radius: 16px;
            overflow: hidden;
            background: var(--secondary);
            transition: all 0.4s ease;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        .game-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .team-card {
            background: var(--secondary);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .team-card img {
            height: 280px;
            object-fit: cover;
        }
        .flink {
            display: inline-block;
            padding: 12px 24px;
            background: var(--secondary);
            border-radius: 8px;
            margin: 10px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .flink:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: var(--secondary);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 20px;
            display: block;
        }
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            margin-top: 60px;
            text-align: center;
            color: var(--text-secondary);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--accent);
        }
        .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(--accent);
            border: 3px solid var(--primary);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            .display-1 {
                font-size: 2.8rem;
            }
            .stat-number {
                font-size: 2.8rem;
            }
            .navbar-nav {
                background: rgba(15, 23, 42, 0.98);
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
        .bg-gradient-dark {
            background: linear-gradient(135deg, var(--primary) 0%, #111827 100%);
        }
