:root {
            --saffron-primary: #FF9933;
            --saffron-secondary: #FFCC00;
            --deep-blue: #000080;
            --light-gold: #FFD700;
            --dark-maroon: #800000;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron-primary), var(--saffron-secondary));
            -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(135deg, var(--saffron-primary) 0%, var(--deep-blue) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            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);
            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(--saffron-primary);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--dark-maroon);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #fff5e6 0%, #ffeccc 100%);
            border-left: 4px solid var(--saffron-secondary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-link {
            font-weight: 600;
            color: var(--deep-blue) !important;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--saffron-primary) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--saffron-primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .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;
            padding: 0.2rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--saffron-primary);
            display: block;
        }
        .footer {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #000066 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        @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;
                margin-bottom: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .icon-feature {
            font-size: 2rem;
            color: var(--saffron-primary);
            margin-right: 1rem;
        }
