:root {
            --saffron-primary: #FF9933;
            --heroic-blue: #138808;
            --clasher-gold: #FFD700;
            --dark-bg: #1a1a2e;
            --light-text: #ffffff;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--saffron-primary), var(--clasher-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1, h2, h3 {
            color: var(--saffron-primary);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .highlight-keyword {
            color: var(--clasher-gold);
            font-weight: 700;
            background: rgba(255,215,0,0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--saffron-primary);
            margin-bottom: 1rem;
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .img-container:hover {
            transform: scale(1.02);
        }
        .nav-link {
            color: var(--light-text) !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--saffron-primary) !important;
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 2rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
