body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF6B35; font-size: 2.5em; }
        h2 { color: #FF9F1C; margin-top: 30px; }
        h3 { color: #2EC4B6; }
        .nav { background: #FF6B35; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; }
        .game-logo { font-size: 1.8em; font-weight: bold; color: white; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; background: none; border: none; color: white; font-size: 1.5em; }
        }
        .download-btn { display: inline-block; background: #2EC4B6; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; }
        .login-btn { display: inline-block; background: #FF9F1C; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        .footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { background: #FF9F1C; color: white; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 3px; }
