:root {
            --primary-chai: #8B4513;
            --secondary-spice: #FF7F50;
            --accent-gold: #FFD700;
            --background-cream: #FFF8DC;
            --text-dark: #2F4F4F;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-cream);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-chai) !important;
            font-size: 1.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .chai-highlight {
            color: var(--primary-chai);
            font-weight: 700;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-chai) 0%, var(--secondary-spice) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .btn-chai {
            background-color: var(--primary-chai);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-chai:hover {
            background-color: var(--secondary-spice);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-chai);
        }
        .tag-badge {
            background-color: var(--secondary-spice);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background-color: var(--primary-chai);
            color: white;
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            color: var(--primary-chai);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 2rem 0;
            }
        }
        .rating-stars {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-chai) !important;
        }
