:root {
            --primary-spice: #FF6B35;
            --secondary-turmeric: #FFD166;
            --accent-coriander: #06D6A0;
            --deep-masala: #8B4513;
            --light-yogurt: #FFF8F0;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-yogurt) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-spice), var(--deep-masala));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-masala);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--primary-spice);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--primary-spice);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, var(--secondary-turmeric), var(--primary-spice));
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
            transition: all 0.3s ease;
        }
        .key-feature:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }
        .spice-icon {
            font-size: 2rem;
            margin-right: 1rem;
            color: var(--secondary-turmeric);
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--primary-spice), var(--deep-masala));
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--deep-masala);
            margin: 0.2rem;
            border-radius: 25px;
        }
        footer {
            background: linear-gradient(135deg, var(--deep-masala), #000);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--secondary-turmeric) 0%, var(--secondary-turmeric) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .table-of-contents {
            background: var(--light-yogurt);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 5px solid var(--accent-coriander);
        }
        .toc-item {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #ddd;
        }
        .toc-item:last-child {
            border-bottom: none;
        }
        .quote-section {
            border-left: 4px solid var(--primary-spice);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--deep-masala);
        }
