/* Заглушка (сначала темный экран) */
.poster-container {
    width: 100%;
    height: 500px; /* Высота, подстраивай под сайт */
    background: black; /* Темный фон по умолчанию */
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: background-image 0.5s ease-in-out;
}

/* После загрузки постера - показываем его */
.poster-container.loaded {
    background-size: cover;
    background-position: center;
}

/* Затемненная область */
.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Кнопка Play */
.play-button {
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Скрываем плееры */
.hidden {
    display: none;
}
