:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --highlight: #e94560;
            --light: #f1f5f9;
            --gray: #64748b;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
            background-color: #f8fafc;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        .section-header h2 {
            font-size: 2.8rem;
            display: inline-block;
            position: relative;
            padding-bottom: 1rem;
        }
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--highlight);
            border-radius: 2px;
        }
        .section-header p {
            color: var(--gray);
            max-width: 700px;
            margin: 1rem auto 0;
            font-size: 1.1rem;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
            color: white;
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--highlight);
        }
        .nav-link {
            color: #e2e8f0 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--highlight);
            transition: var(--transition);
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        .hero {
            background: linear-gradient(rgba(22, 33, 62, 0.85), rgba(15, 52, 96, 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;
            color: white;
            padding: 10rem 0 8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            animation: fadeInUp 1s ease;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light) 0%, #e0f2fe 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--accent);
        }
        .game-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .game-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .game-card:hover .game-img {
            transform: scale(1.05);
        }
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 5rem 0;
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--highlight);
            font-family: 'Rajdhani', sans-serif;
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .team-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding-bottom: 2rem;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            width: 100%;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .contact-info-item:hover {
            transform: translateX(5px);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--light) 0%, #e0f2fe 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent);
            flex-shrink: 0;
            margin-right: 1.5rem;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow);
            margin: 0.5rem;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            transform: translateY(-5px);
            color: var(--highlight);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .footer {
            background: var(--primary);
            color: white;
            padding: 5rem 0 2rem;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 0.8rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--highlight);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 4rem;
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .section-header h2 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 8rem 0 6rem;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .feature-card, .game-card, .team-card {
                padding: 1.8rem 1.5rem;
            }
        }
