.video-overlay {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;

    .video-modal {
        background-color: #1a1a1a;
        border-radius: 8px;
        max-width: 90vw;
        max-height: 90vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;

        .video-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1rem;
            background-color: #2a2a2a;
            border-bottom: 1px solid #444;

            .video-song-info {
                flex: 1;
                color: #fff;

                .video-title {
                    font-size: 1.25rem;
                    font-weight: bold;
                    margin-bottom: 0.25rem;
                }

                .video-artist {
                    font-size: 1rem;
                    color: #ccc;
                    margin-bottom: 0.5rem;
                }

                .video-code {
                    font-size: 0.875rem;
                    color: #888;
                    font-family: monospace;
                }
            }

            .video-close-button {
                background: none;
                border: none;
                color: #fff;
                font-size: 2rem;
                cursor: pointer;
                padding: 0;
                margin-left: 1rem;
                line-height: 1;
                width: 2rem;
                height: 2rem;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 4px;
                transition: background-color 0.2s;
            }
        }

        .video-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #000;
            min-height: 0;

            .video-player {
                width: 100%;
                height: 100%;
                max-height: calc(90vh - 100px);
                object-fit: contain;
            }
        }
    }
}
