:root {
            --saffron-orange: #FF9933;
            --india-green: #138808;
            --royal-blue: #000080;
            --gold-accent: #FFD700;
        }
        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-orange), var(--gold-accent));
            -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(255, 153, 51, 0.9), rgba(19, 136, 8, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--royal-blue);
            border-left: 5px solid var(--saffron-orange);
            padding-left: 15px;
            margin: 40px 0 25px;
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 25px;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .cultural-highlight {
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }
        .gameplay-section {
            background-color: white;
            padding: 50px 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .timeline-item {
            border-left: 3px solid var(--saffron-orange);
            padding-left: 25px;
            margin-bottom: 30px;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 13px;
            height: 13px;
            background: var(--india-green);
            border-radius: 50%;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 153, 51, 0.2) 50%);
            font-weight: 700;
            padding: 2px 5px;
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--saffron-orange) !important;
        }
        footer {
            background: linear-gradient(135deg, var(--royal-blue), #1a1a2e);
            color: white;
            padding: 40px 0 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 25px;
            text-align: justify;
        }
        .icon-feature {
            font-size: 2.5rem;
            color: var(--saffron-orange);
            margin-bottom: 15px;
        }
