:root {
            --saffron-orange: #FF9933;
            --space-blue: #1a237e;
            --cosmic-purple: #4a148c;
            --star-gold: #FFD700;
            --india-green: #138808;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron-orange), var(--star-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(74, 20, 140, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .game-feature {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .game-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-saffron {
            background: linear-gradient(45deg, var(--saffron-orange), var(--star-gold));
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-saffron:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
        }
        .btn-space {
            background: linear-gradient(45deg, var(--space-blue), var(--cosmic-purple));
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-space:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(26, 35, 126, 0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--saffron-orange), var(--star-gold));
            border-radius: 2px;
        }
        .rating-stars {
            color: var(--star-gold);
        }
        .tag {
            display: inline-block;
            background: rgba(255, 153, 51, 0.1);
            color: var(--saffron-orange);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--saffron-orange);
            color: white;
            text-decoration: none;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        footer {
            background: linear-gradient(135deg, var(--space-blue), var(--cosmic-purple));
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
                border-radius: 0 0 20px 20px;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
