body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1, h2, h3 { color: #0a5273; margin: 25px 0 15px; }
        h1 { font-size: 2.2em; }
        h2 { font-size: 1.8em; border-bottom: 2px solid #ff9900; }
        h3 { font-size: 1.4em; }
        .nav-bar { background: #0a5273; color: white; padding: 15px; display: flex; justify-content: space-between; align-items: center; position: relative; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5em; cursor: pointer; }
        .content { margin-top: 20px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; margin: 10px 0; background: #ff9900; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { background: #e0e0e0; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 15px; }
        footer { margin-top: 40px; padding: 20px; background: #f5f5f5; border-top: 2px solid #ff9900; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 60px; left: 0; background: #0a5273; }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            body { padding: 10px; }
        }
