:root {
            --saffron-orange: #FF9933;
            --india-green: #138808;
            --racing-blue: #1e40af;
            --premium-gold: #d4af37;
        }
        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(--premium-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 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/1920x800') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .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-saffron {
            background: linear-gradient(45deg, var(--saffron-orange), #ff6b00);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-saffron:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
        }
        .btn-india-green {
            background: linear-gradient(45deg, var(--india-green), #0a6b0a);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-india-green:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(19, 136, 8, 0.3);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--saffron-orange), var(--premium-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .review-card {
            border-left: 5px solid var(--saffron-orange);
            transition: all 0.3s ease;
        }
        .review-card:hover {
            border-left: 5px solid var(--india-green);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tag-link {
            display: inline-block;
            background: #f1f5f9;
            color: #475569;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .tag-link:hover {
            background: var(--saffron-orange);
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        footer {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: var(--saffron-orange);
            font-size: 2.5rem;
        }
        h2 {
            color: var(--racing-blue);
            border-bottom: 3px solid var(--saffron-orange);
            padding-bottom: 10px;
        }
        h3 {
            color: var(--india-green);
        }
        .highlight-text {
            background: linear-gradient(120deg, rgba(255, 153, 51, 0.2) 0%, rgba(255, 153, 51, 0) 100%);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid var(--saffron-orange);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
