:root {
            --saffron-primary: #FF9933;
            --saffron-secondary: #FFCC00;
            --deep-blue: #000080;
            --light-cream: #FFF8E1;
            --rich-green: #138808;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron-primary), var(--saffron-secondary));
            -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(135deg, var(--saffron-primary) 0%, var(--saffron-secondary) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 2rem 2rem;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            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.15);
        }
        h1, h2, h3 {
            color: var(--deep-blue);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--saffron-primary);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #fff, var(--light-cream));
            border-left: 4px solid var(--saffron-primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 1rem 1rem 0;
        }
        .cultural-highlight {
            background: linear-gradient(135deg, var(--light-cream), #fff);
            border: 2px solid var(--saffron-secondary);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem 0;
        }
        .gameplay-mechanics {
            background: var(--deep-blue);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            margin: 2rem 0;
        }
        .img-placeholder {
            background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-secondary));
            height: 300px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .img-placeholder:hover {
            transform: scale(1.02);
        }
        .nav-link {
            color: var(--deep-blue);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--saffron-primary);
        }
        footer {
            background: var(--deep-blue);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 1rem 1rem;
            }
            .content-section {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--saffron-secondary) 0%, var(--saffron-secondary) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--saffron-primary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
