body { margin: 0; padding: 0; background: #1a1a1a; font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .player-container { width: 100%; max-width: 800px; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.3); } .video-wrapper { position: relative; padding-bottom: 56.25%; /* 16:9 соотношение */ height: 0; background: #000; } .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; } .player-footer { background: linear-gradient(90deg, #2a2a2a, #1e1e1e); color: #fff; padding: 12px 20px; text-align: center; font-size: 16px; border-top: 1px solid #333; } .error-message { display: none; padding: 20px; background: #2a2a2a; color: #ff6b6b; text-align: center; } @media (max-width: 600px) { .player-footer { font-size: 14px; padding: 10px; } } Страна FM - Прямой эфир | 24radio.ru Плеер не загрузился. Попробуйте открыть напрямую. document.addEventListener('DOMContentLoaded', function() { const player = document.getElementById('stranaPlayer'); const errorText = document.getElementById('errorText'); // Проверка загрузки плеера setTimeout(() => { try { if (!player.contentWindow || player.contentWindow.document.URL === 'about:blank') { errorText.style.display = 'block'; } } catch (e) { errorText.style.display = 'block'; console.error("Ошибка загрузки плеера:", e); } }, 5000); // Автоматическое масштабирование window.addEventListener('resize', function() { player.style.height = player.offsetWidth * 0.5625 + 'px'; }); });