.video-player {
    margin: 2rem 0;
    position: relative;
    width: 100%;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive container that maintains 16:9 aspect ratio */
.video-player::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

#youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    padding: 1rem;
    width: 100%;
    background: var(--bg-secondary);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .video-player {
        margin: 1rem 0;
    }
}
