:root {
            --primary-spice: #FF6B35;
            --secondary-turmeric: #FFD166;
            --accent-cardamom: #06D6A0;
            --dark-masala: #073B4C;
            --light-saffron: #FF9E6D;
        }
        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(--primary-spice), var(--secondary-turmeric));
            -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(7, 59, 76, 0.8), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .game-feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        .game-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .spice-badge {
            background: linear-gradient(45deg, var(--primary-spice), var(--light-saffron));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            display: inline-block;
            margin: 0.25rem;
        }
        .download-btn {
            background: linear-gradient(45deg, var(--primary-spice), var(--light-saffron));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }
        .login-btn {
            background: transparent;
            border: 2px solid var(--primary-spice);
            color: var(--primary-spice);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: var(--primary-spice);
            color: white;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1, h2, h3 {
            color: var(--dark-masala);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary-spice);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-spice);
            margin-top: 2rem;
        }
        .player-review {
            background: #f8f9fa;
            border-left: 4px solid var(--accent-cardamom);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tag-link {
            display: inline-block;
            background: #e9ecef;
            color: #495057;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0.25rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background: var(--primary-spice);
            color: white;
            transform: translateY(-2px);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-highlight {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 1rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-spice);
            display: block;
        }
        footer {
            background: var(--dark-masala);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
