body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #121212;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.player-container {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

video {
    width: 100%;
    display: block;
}

#subtitle-display {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    max-width: 80%;
    text-shadow: 1px 1px 2px black;
    pointer-events: none; /* Prevents the text from blocking clicks to the video */
}

.controls-legend {
    margin-top: 24px;
    text-align: center;
    color: #888;
    line-height: 1.6;
}

.controls-legend strong {
    color: #fff;
    background: #333;
    padding: 2px 6px;
    border-radius: 4px;
}