:root {
            --primary-spice: #d35400;
            --secondary-turmeric: #f39c12;
            --accent-coriander: #27ae60;
            --background-cream: #fef9e7;
            --text-dark: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-cream);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-spice);
            font-size: 1.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-spice) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--primary-spice);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--secondary-turmeric);
            padding-bottom: 0.5rem;
        }
        h2 {
            border-left: 5px solid var(--accent-coriander);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .feature-icon {
            color: var(--primary-spice);
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .spice-highlight {
            background: linear-gradient(120deg, #f6e6b4 0%, #f6e6b4 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .fact-box {
            background-color: #e8f5e9;
            border-left: 4px solid var(--accent-coriander);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
