:root {
            --masala-orange: #FF6B35;
            --spicy-red: #D32F2F;
            --golden-yellow: #FFD700;
            --deep-purple: #4A148C;
            --fresh-green: #388E3C;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f9f5e9 0%, #fff8e1 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--masala-orange) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--masala-orange) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(74, 20, 140, 0.8), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .btn-download {
            background: var(--masala-orange);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-download:hover {
            background: var(--spicy-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-login {
            background: var(--deep-purple);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-login:hover {
            background: #6A1B9A;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 20px;
        }
        h1 {
            border-bottom: 3px solid var(--golden-yellow);
            padding-bottom: 10px;
        }
        h2 {
            border-left: 5px solid var(--masala-orange);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            color: var(--spicy-red);
            margin-top: 30px;
        }
        .key-feature {
            background: #FFF3E0;
            border-left: 4px solid var(--masala-orange);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: #E3F2FD;
            color: #1565C0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: #BBDEFB;
            transform: translateY(-2px);
            text-decoration: none;
            color: #0D47A1;
        }
        .rating-stars {
            color: var(--golden-yellow);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--deep-purple) 0%, #311B92 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: #E1BEE7;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        .highlight {
            background: linear-gradient(120deg, #FFECB3 0%, #FFECB3 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
