
.cinema_container {
    background: #000;
    border-radius: 10px;
    margin: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

#cinema_player_wrap {
    background: #000;
    height: 30vh;
    min-height: 150px;
    max-height: 360px;
    position: relative; /* ensure proper overlay behavior if needed */
}

.cinema_ui {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.cinema_controls {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.cinema_seek_wrap {
    width: 100%;
    padding: 5px 15px;
}
.cinema_seek {
    width: 100%;
    cursor: pointer;
}
.cinema_btn {
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    border: none;
    transition: 0.3s;
}
.cinema_btn i { margin-left: 5px; }
.fhide { display: none !important; }

.cinema_btns {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.cinema_btns button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.cinema_btns button:hover {
    transform: scale(1.2);
    color: #ff4757;
}

#cinema_time_display {
    color: #ccc;
    font-size: 12px;
    font-family: monospace;
}

.cinema_progress_wrap {
    width: 100%;
}

#cinema_seek {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #444;
    border-radius: 2px;
}

#cinema_seek::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    cursor: pointer;
}

#cinema_admin_btn p {
    color: #ff4757;
    font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cinema_container {
        margin: 5px;
        border-radius: 5px;
    }
}
