body { margin: 0; padding: 20px; background: #000; font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .player-container { width: 100%; max-width: 800px; position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); } .video-wrapper { position: relative; padding-bottom: 56.25%; /* 16:9 соотношение */ height: 0; } .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; } .player-info { background: linear-gradient(90deg, #0077ff, #00c6ff); color: white; padding: 10px; text-align: center; font-size: 16px; } .error-message { color: white; text-align: center; padding: 20px; display: none; } Europa Plus TV Live | 24radio.ru Плеер не загрузился. Попробуйте открыть напрямую. document.addEventListener('DOMContentLoaded', function() { const player = document.getElementById('vkPlayer'); const errorText = document.getElementById('errorText'); // Проверка загрузки плеера setTimeout(() => { if (!player.contentWindow || player.contentWindow.length === 0) { errorText.style.display = 'block'; } }, 5000); // Попытка автозапуска с звуком (может не работать в некоторых браузерах) try { player.src += "&autoplay=1"; } catch (e) { console.log("Автозапуск недоступен:", e); } });