/* Frontend Player Styles */
.wps-forge-player-wrapper {
    margin-bottom: 30px;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Tabs */
.wps-player-tabs {
    display: flex;
    flex-wrap: wrap;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.wps-tab-btn {
    background: transparent;
    border: none;
    color: #aaa;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border-right: 1px solid #333;
}

.wps-tab-btn:hover {
    color: #fff;
    background: #252525;
}

.wps-tab-btn.active {
    color: #fff;
    background: #333;
    box-shadow: inset 0 -2px 0 #2271b1; /* WP Blue accent */
}

/* Video Screen */
.wps-player-screen {
    position: relative;
    width: 100%;
    /* Aspect Ratio 16:9 */
    aspect-ratio: 16 / 9; 
    background: #000;
}

.wps-video-pane {
    display: none;
    width: 100%;
    height: 100%;
}

.wps-video-pane.active {
    display: block;
}

/* Responsive Embeds */
.wps-video-pane iframe,
.wps-video-pane video {
    width: 100%;
    height: 100%;
    border: none;
}