body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #ff6b35; border-bottom: 3px solid #ff9e4c; padding-bottom: 10px; }
        h2 { color: #0081a7; margin-top: 30px; }
        h3 { color: #00af91; }
        .logo { font-size: 28px; font-weight: bold; color: #ff6b35; text-decoration: none; }
        .nav { background: #003049; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
        .nav-links a { color: white; margin-left: 20px; text-decoration: none; }
        .mobile-nav-toggle { display: none; color: white; font-size: 24px; }
        .download-btn { background: #ff6b35; color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 0; }
        .login-btn { background: #0081a7; color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 10px; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; }
        .tag { background: #f0f0f0; padding: 5px 10px; margin: 5px; border-radius: 20px; display: inline-block; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-nav-toggle { display: block; }
            .nav.active .nav-links { display: flex; flex-direction: column; }
        }
