:root {
            --primary-indigo: #4B0082;
            --secondary-saffron: #FF9933;
            --accent-emerald: #138808;
            --gold-ornate: #D4AF37;
            --text-dark: #2C1810;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f9f5ff 0%, #fff0f5 100%);
        }
        .cultural-header {
            background: linear-gradient(135deg, var(--primary-indigo) 0%, #6A0DAD 100%);
            color: white;
            padding: 2rem 0;
            border-bottom: 5px solid var(--gold-ornate);
            box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
        }
        .logo-ragadance {
            font-family: 'Georgia', serif;
            font-size: 2.8rem;
            font-weight: bold;
            text-shadow: 3px 3px 0px var(--secondary-saffron);
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .logo-ragadance:hover {
            transform: scale(1.05);
            text-shadow: 4px 4px 0px var(--accent-emerald);
        }
        .nav-cultural {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        .nav-link-custom {
            color: var(--primary-indigo) !important;
            font-weight: 600;
            padding: 0.7rem 1.2rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        .nav-link-custom:hover {
            background: var(--secondary-saffron);
            color: white !important;
            transform: translateY(-2px);
        }
        .cultural-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--secondary-saffron);
        }
        h1 {
            color: var(--primary-indigo);
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 3px double var(--gold-ornate);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--secondary-saffron);
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1.5rem 0;
            padding-left: 1rem;
            border-left: 4px solid var(--accent-emerald);
        }
        h3 {
            color: var(--primary-indigo);
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 1rem 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #ffeacc 100%);
            border-left: 5px solid var(--secondary-saffron);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.15);
        }
        .emoji-divider {
            text-align: center;
            font-size: 2rem;
            margin: 2rem 0;
            opacity: 0.7;
        }
        .cultural-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            border: 3px solid var(--gold-ornate);
        }
        .cultural-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #e0e0e0;
            position: relative;
            padding-left: 2.5rem;
        }
        .feature-list li:before {
            content: "?";
            color: var(--secondary-saffron);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        .cultural-footer {
            background: linear-gradient(135deg, var(--primary-indigo) 0%, #2D004D 100%);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 5px solid var(--gold-ornate);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 60%, rgba(255, 153, 51, 0.3) 40%);
            font-weight: 600;
            padding: 0 0.2rem;
        }
        @media (max-width: 768px) {
            .logo-ragadance {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .cultural-section {
                padding: 1.5rem;
            }
        }
        .schema-badge {
            background: var(--accent-emerald);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
