:root {
            --primary-spice: #d35400;
            --secondary-gold: #f39c12;
            --dark-masala: #2c3e50;
            --light-chai: #ecf0f1;
            --accent-turmeric: #f1c40f;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-spice) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 30px 30px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--dark-masala);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            color: var(--primary-spice);
            font-size: 2.8rem;
            text-align: center;
        }
        h2 {
            border-left: 5px solid var(--secondary-gold);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--primary-spice);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary-spice);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-turmeric) 0%, var(--accent-turmeric) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .cultural-note {
            background-color: #e8f4f8;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid #3498db;
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary-spice);
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--dark-masala);
        }
        footer {
            background-color: var(--dark-masala);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .table-of-contents ul {
            list-style-type: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin-bottom: 0.7rem;
            padding-left: 1rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .table-of-contents li:hover {
            border-left-color: var(--primary-spice);
            padding-left: 1.5rem;
        }
        .table-of-contents a {
            text-decoration: none;
            color: var(--dark-masala);
            font-weight: 500;
        }
        .rating-badge {
            background: linear-gradient(135deg, var(--secondary-gold), var(--primary-spice));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1rem;
        }
