:root {
            --primary-color: #FF6B35;
            --secondary-color: #FFD166;
            --accent-color: #06D6A0;
            --text-dark: #2D3047;
            --text-light: #F8F9FA;
            --spice-red: #E63946;
            --spice-yellow: #FFB347;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        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(--spice-red);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--spice-yellow);
            margin-top: 2rem;
        }
        .highlight {
            background-color: var(--secondary-color);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid var(--primary-color);
        }
        .game-feature {
            background: var(--text-light);
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .game-feature:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: scale(1.02);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.03);
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary-color);
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--text-dark);
            margin: 5px 0;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .nav-pills .nav-link:hover {
            background-color: var(--secondary-color);
        }
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .keyword-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin: 0 5px 5px 0;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
        }
        .table-of-contents {
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 5px solid var(--accent-color);
        }
        .recipe-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .recipe-card:hover {
            transform: translateY(-10px);
        }
        .recipe-header {
            background: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: center;
        }
        .recipe-body {
            padding: 20px;
        }
        .tip-box {
            background-color: #e8f4f8;
            border-left: 5px solid var(--accent-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .spice-level {
            display: inline-block;
            margin-right: 10px;
            color: var(--spice-red);
        }
