:root {
            --primary-spice: #d35400;
            --secondary-turmeric: #f39c12;
            --accent-cumin: #e67e22;
            --background-cream: #fff9e6;
            --text-dark: #2c3e50;
            --highlight-gold: #f1c40f;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--background-cream) 0%, #fff 100%);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .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(44, 62, 80, 0.8), rgba(211, 84, 0, 0.7)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            border-left: 5px solid var(--accent-cumin);
        }
        h1, h2, h3 {
            color: var(--primary-spice);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid var(--secondary-turmeric);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-cumin);
        }
        .key-feature {
            background: linear-gradient(135deg, #fff5e6, #ffeccc);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--highlight-gold);
            transition: transform 0.3s ease;
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-spice);
            margin-bottom: 1rem;
        }
        .cultural-note {
            background: rgba(243, 156, 18, 0.1);
            border-left: 4px solid var(--secondary-turmeric);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--primary-spice), var(--accent-cumin));
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--text-dark);
            margin: 0.2rem;
            border-radius: 8px;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, transparent 0%, transparent 90%, rgba(241, 196, 15, 0.3) 90%);
            padding: 0.2rem 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .table-of-contents {
            background: rgba(255, 249, 230, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .toc-item {
            padding: 0.7rem 1rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
            margin: 0.3rem 0;
        }
        .toc-item:hover {
            border-left: 3px solid var(--primary-spice);
            background: rgba(211, 84, 0, 0.05);
            padding-left: 1.5rem;
        }
        .spice-rating {
            color: var(--highlight-gold);
            font-size: 1.2rem;
        }
