/* Shorts Player Styles */
.shorts-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.shorts-fullscreen .short-item {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shorts-fullscreen .short-item iframe {
    width: 100%;
    height: 100%;
    max-width: 450px;
    border: none;
}

.shorts-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .shorts-fullscreen {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }
    .shorts-fullscreen .short-item {
        min-width: 100%;
        height: 100vh;
        scroll-snap-align: start;
    }
}
