/* Watch Party Styles */
#video-container {
    background: #000;
    border-bottom: 1px solid var(--border-color);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#youtube-player {
    width: 100%;
    height: 100%;
}

#close-video-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 100;
    opacity: 0.8;
    border: 1px solid var(--danger-color);
    background: rgba(0, 0, 0, 0.7);
    color: var(--danger-color);
    padding: 4px 12px;
    transition: all 0.2s;
}

#close-video-btn:hover {
    opacity: 1;
    background: var(--danger-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Watch Party Sidebar Styles */
#watch-party-section {
    flex-shrink: 0;
}

.video-wrapper-sidebar {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}

.video-wrapper-sidebar iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#popout-video-btn {
    font-size: 14px;
    padding: 2px 8px;
}

#popout-video-btn:hover {
    background: var(--neon-cyan);
    color: #000;
}

.popout-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}