/* =========================================
   Odysee Video Player Styles | DevMan07
   ========================================= */

.odysee-player-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.odysee-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

@media (max-width: 600px) {
    .odysee-player-container {
        border-radius: 8px;
    }
}