body {
    margin: 0;
    background: black;
    overflow: hidden;
    color: white;
    font-family: sans-serif;
}

#videoContainer {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    z-index: 9999;
    pointer-events: none;
}

#passwordPrompt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    text-align: center;
}

#passwordPrompt input {
    padding: 8px;
    width: 200px;
    margin-top: 10px;
}

#passwordPrompt button {
    padding: 8px 12px;
    margin-top: 10px;
    cursor: pointer;
}

#controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

#playPause {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
}

#progressBar {
    flex-grow: 1;
    height: 6px;
    margin: 0 10px;
    background: #555;
    position: relative;
    cursor: pointer;
}

#progressFill {
    height: 100%;
    background: #0f0;
    width: 0%;
}

#currentTime {
    font-size: 14px;
    min-width: 60px;
    text-align: right;
}
