:root {
            --primary-spice: #d35400;
            --secondary-gold: #f39c12;
            --accent-turmeric: #f1c40f;
            --background-cream: #fef9e7;
            --text-dark: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--background-cream) 0%, #fdf2e9 100%);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-spice) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(211, 84, 0, 0.9), rgba(243, 156, 18, 0.8)), url('https://via.placeholder.com/1600x900') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin: 30px 0;
        }
        h1, h2, h3 {
            color: var(--primary-spice);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-gold);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-gold);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
            border-left: 4px solid var(--accent-turmeric);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .spice-icon {
            color: var(--primary-spice);
            margin-right: 10px;
            font-size: 1.2em;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-turmeric) 0%, var(--accent-turmeric) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1em 0;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 25px 0;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-spice) !important;
        }
        footer {
            background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
                margin: 20px 0;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .table-of-contents {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }
        .toc-item {
            padding: 8px 0;
            border-bottom: 1px dashed #bdc3c7;
        }
        .toc-item:last-child {
            border-bottom: none;
        }
