.cinema-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 10px;
}

.error-message {
    color: #ff4444;
    text-align: center;
    padding: 20px;
    background: #ffe6e6;
    border: 1px solid #ff4444;
    border-radius: 5px;
}

#cinema-modal {
    position: fixed;
    background: #2a2d34;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    z-index: 1002;
    overflow: hidden;
    display: none;
    transition: all 0.3s ease;
}

#cinema-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    display: none;
}

#cinema-modal-header {
    background: #151617;
    padding: 15px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

#cinema-modal-close {
    background: #dc3545;
    border: none;
    color: white;
    /*padding: 5px 15px;*/
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cinema-video-wrapper {
    position: relative;
    background: #000;
    overflow: hidden;
}

.cinema-video-container {
    width: 100%;
    height: 100%;
}

#cinema-iframe {
    display: block;
}