:root {
            --diwali-orange: #FF6B35;
            --diwali-gold: #FFD700;
            --diwali-red: #DC143C;
            --diwali-purple: #8A2BE2;
            --diwali-dark: #2C1810;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--diwali-orange), var(--diwali-gold));
            -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(135deg, var(--diwali-orange) 0%, var(--diwali-red) 50%, var(--diwali-purple) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid var(--diwali-orange);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--diwali-orange), var(--diwali-red));
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
        }
        .login-btn {
            background: transparent;
            border: 2px solid var(--diwali-gold);
            color: var(--diwali-dark);
            padding: 10px 28px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: var(--diwali-gold);
            color: white;
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--diwali-purple), var(--diwali-red));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: scale(1.1);
            color: white;
            text-decoration: none;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--diwali-orange);
            display: block;
        }
        .rating-stars {
            color: var(--diwali-gold);
            font-size: 1.2rem;
        }
        .footer-section {
            background: var(--diwali-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .game-type-link {
            color: var(--diwali-gold);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: white;
            text-decoration: underline;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--diwali-orange) !important;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: white;
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            color: var(--diwali-orange);
            border-bottom: 3px solid var(--diwali-gold);
            padding-bottom: 10px;
        }
        h3 {
            color: var(--diwali-purple);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--diwali-gold) 0%, var(--diwali-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .player-review {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--diwali-orange);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .img-caption {
            font-style: italic;
            text-align: center;
            margin-top: 10px;
            color: #666;
        }
