:root {
            --saffron: #FF9933;
            --green: #138808;
            --blue: #000080;
            --gold: #FFD700;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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), var(--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(255, 153, 51, 0.9), rgba(19, 136, 8, 0.8)), 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), var(--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);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--saffron);
            display: block;
        }
        .tag {
            display: inline-block;
            background: #e9ecef;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #495057;
        }
        .tag:hover {
            background: var(--saffron);
            color: white;
            transform: scale(1.05);
        }
        .review-card {
            border-left: 5px solid var(--saffron);
            transition: all 0.3s ease;
        }
        .review-card:hover {
            border-left: 5px solid var(--green);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 40px 0 20px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--saffron), var(--green));
            border-radius: 2px;
        }
        .content-section {
            margin-bottom: 50px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 153, 51, 0.2) 0%, rgba(255, 153, 51, 0) 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--saffron);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
