:root {
            --primary-gold: #FFD700;
            --spice-orange: #FF8C00;
            --chai-brown: #8B4513;
            --turmeric-yellow: #FFC107;
            --indigo-blue: #4B0082;
            --forest-green: #228B22;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--turmeric-yellow), var(--spice-orange));
            -webkit-background-clip: text;
            background-clip: text;
            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, 193, 7, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 2rem;
        }
        .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(--chai-brown);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--turmeric-yellow);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--spice-orange);
            margin-top: 2rem;
        }
        .key-point {
            background: linear-gradient(135deg, #fff9e6, #ffeaa7);
            border-left: 4px solid var(--turmeric-yellow);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--turmeric-yellow);
            margin-right: 1rem;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--turmeric-yellow), var(--spice-orange));
            border: none;
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--chai-brown);
            font-weight: 500;
        }
        footer {
            background: linear-gradient(135deg, var(--chai-brown), #5D4037);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .cultural-note {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border: 2px dashed var(--indigo-blue);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        @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;
            }
        }
        .strategy-box {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 3px solid var(--forest-green);
        }
        .highlight-term {
            background: linear-gradient(120deg, var(--turmeric-yellow) 0%, var(--turmeric-yellow) 100%);
            background-position: 0 88%;
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            font-weight: 600;
            padding: 0.1rem 0.2rem;
        }
