html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

#tv-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
}

#tv-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ TV mode */
    background: #000;
}

.shaka-video-container {
    width: 100% !important;
    height: 100% !important;
}

.shaka-video-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media (max-width: 768px), (orientation: portrait) {

    #tv-container video,
    .shaka-video-container video {
        object-fit: contain !important; /* ✅ کل تصویر */
        background: #000;
    }
}

.shaka-controls-container {
    font-size: 20px;
}

#tv-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 20;
    pointer-events: none;
}

#tv-logo img {
    width: 220px;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    #tv-logo {
        top: 12px;
        right: 12px;
    }

    #tv-logo img {
        width: 100px;
    }
}
#tv-logo {
    pointer-events: auto;
}

