:root {
            --spice-orange: #FF6B35;
            --cardamom-green: #2E8B57;
            --turmeric-yellow: #FFD700;
            --pepper-black: #2F2F2F;
            --cinnamon-brown: #8B4513;
            --cream-white: #FFF8E7;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--cream-white);
            color: var(--pepper-black);
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--spice-orange);
            font-size: 1.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--spice-orange), var(--cinnamon-brown));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--turmeric-yellow) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--cinnamon-brown);
            margin-bottom: 1.2rem;
        }
        h1 {
            border-bottom: 3px solid var(--spice-orange);
            padding-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--cardamom-green);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--spice-orange);
            margin-top: 1.8rem;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .key-term {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 3px solid var(--spice-orange);
            padding: 0.5rem 1rem;
            margin: 1.2rem 0;
            font-weight: 500;
        }
        .spice-icon {
            color: var(--spice-orange);
            margin-right: 0.5rem;
        }
        .game-feature {
            background: linear-gradient(135deg, #fff, #f9f5f0);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }
        .image-caption {
            font-style: italic;
            text-align: center;
            color: var(--cinnamon-brown);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .cultural-note {
            background-color: rgba(46, 139, 87, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--cardamom-green);
        }
        footer {
            background: linear-gradient(135deg, var(--pepper-black), #1a1a1a);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--spice-orange);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--cinnamon-brown);
            transform: translateY(-3px);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .logo-text {
                font-size: 1.5rem;
            }
        }
