:root {
            --primary-spice: #FF6B35;
            --secondary-yellow: #FFD166;
            --accent-red: #EF476F;
            --dark-chai: #8B4513;
            --light-cream: #FFF8E1;
            --deep-masala: #5D4037;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: var(--deep-masala);
            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);
            letter-spacing: -0.5px;
        }
        .nav-link {
            font-weight: 600;
            color: var(--deep-masala) !important;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-spice) !important;
            border-bottom: 2px solid var(--primary-spice);
        }
        .hero-section {
            background: linear-gradient(rgba(93, 64, 55, 0.8), rgba(139, 69, 19, 0.9)), url('https://via.placeholder.com/1600x900') 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.08);
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        h1, h2, h3 {
            color: var(--primary-spice);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--secondary-yellow);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-red);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, var(--secondary-yellow) 0%, #FFECB3 100%);
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            border-left: 5px solid var(--primary-spice);
        }
        .spice-highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid var(--primary-spice);
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .icon-feature {
            font-size: 2.5rem;
            color: var(--primary-spice);
            margin-bottom: 15px;
        }
        .fact-box {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border: 2px dashed var(--primary-spice);
        }
        footer {
            background: linear-gradient(135deg, var(--deep-masala) 0%, #3E2723 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @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, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary-spice);
        }
        .toc-item {
            margin-bottom: 10px;
            padding-left: 15px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .toc-item:hover {
            border-left: 3px solid var(--primary-spice);
            padding-left: 20px;
        }
        .toc-item a {
            color: var(--deep-masala);
            text-decoration: none;
            font-weight: 500;
        }
        .toc-item a:hover {
            color: var(--primary-spice);
        }
