:root {
            --saffron-orange: #FF9933;
            --india-green: #138808;
            --royal-blue: #000080;
            --gold-yellow: #FFD700;
            --cultural-red: #CE1126;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-feature {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .game-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-india {
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-india:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: var(--royal-blue);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
            border-radius: 2px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .tag {
            background: #f8f9fa;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            text-decoration: none;
            color: #495057;
        }
        .tag:hover {
            background: var(--saffron-orange);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .rating-stars {
            color: var(--gold-yellow);
            font-size: 1.2rem;
        }
        .cultural-highlight {
            border-left: 4px solid var(--saffron-orange);
            padding-left: 20px;
            background: rgba(255, 153, 51, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--royal-blue);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 25px;
            text-align: justify;
        }
        .key-term {
            font-weight: 700;
            color: var(--royal-blue);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin: 20px 0;
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
        }
        .nav-pills .nav-link {
            color: var(--royal-blue);
        }
