:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #ffd166;
            --text-dark: #2d3748;
            --text-light: #f8f9fa;
            --spice-red: #e53e3e;
            --turmeric-yellow: #d69e2e;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--spice-red) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--spice-red);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--turmeric-yellow);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.3rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .nav-pills .nav-link.active {
            background: var(--primary-color);
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--text-dark);
            font-weight: 500;
        }
        .table-of-contents {
            background: linear-gradient(135deg, #fffaf0 0%, #fed7aa 100%);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--text-dark) 0%, #4a5568 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .emoji-divider {
            font-size: 2rem;
            text-align: center;
            margin: 2rem 0;
            opacity: 0.7;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
                border-radius: 15px;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .stats-box {
            background: linear-gradient(135deg, #fed7d7 0%, #feebc8 100%);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 5px solid var(--spice-red);
        }
        .ingredient-list {
            list-style-type: none;
            padding: 0;
        }
        .ingredient-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .ingredient-list li:before {
            content: "?️";
            margin-right: 0.5rem;
        }
