:root {
            --saffron-orange: #FF9933;
            --india-green: #138808;
            --royal-blue: #000080;
            --gold-yellow: #FFD700;
            --deep-purple: #4B0082;
        }
        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;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--saffron-orange);
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--india-green);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--royal-blue);
        }
        .highlight {
            background-color: rgba(255, 153, 51, 0.1);
            border-left: 4px solid var(--saffron-orange);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .btn-india {
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
        }
        .btn-india:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 153, 51, 0.6);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: #f1f1f1;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--saffron-orange);
            color: white;
            transform: translateY(-2px);
        }
        .rating-stars {
            color: var(--gold-yellow);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(45deg, var(--deep-purple), var(--royal-blue));
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .nav-link {
            color: rgba(255,255,255,0.8);
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 25px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
