/* Baseline structural CSS for 3D Stack */
.ga-parent-wrapper-d4df7291 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 40px;
}

/* 3D Perspective setup on the card stack container with isolated CSS stacking context */
.ga-stack-container-d4df7291 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    isolation: isolate;
    z-index: 2;
}

/* Track container holding the cards */
.ga-cards-track-d4df7291 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform-style: preserve-3d;
    box-sizing: border-box;
}

/* Individual premium episode panel */
.ga-card-d4df7291 {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), 
                filter 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-radius 0.3s ease;
    transform-origin: center center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Poster image inside the cards */
.ga-card-img-d4df7291 {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    display: block;
}

/* Grayscale monochrome configuration by default for non-active */
.ga-card-d4df7291:not(.active) {
    pointer-events: none; /* No hover transitions for back-cards */
}

/* Active front card specific properties */
.ga-card-d4df7291.active {
    filter: grayscale(0%) !important;
}

/* Symmetrical interactive scale/swell on active card hover */
.ga-card-d4df7291.active:hover {
    transform: scale(1.08) translate3d(0, 0, 10px) !important;
}

/* Play indicator on center card hover */
.ga-play-cue-d4df7291 {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.8);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.ga-play-cue-d4df7291 svg {
    width: 28px;
    height: 28px;
    fill: #111;
}

.ga-card-d4df7291.active:hover .ga-play-cue-d4df7291 {
    opacity: 1;
    transform: scale(1);
}

/* Navigation dots */
.ga-dots-wrapper-d4df7291 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.ga-dot-d4df7291 {
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Static caption layout below navigation dots */
.ga-caption-wrapper-d4df7291 {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

.ga-title-d4df7291 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.ga-desc-d4df7291 {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Strict Arrow Controls (No container boxes, absolutely transparent background) */
.ga-arrow-d4df7291 {
    position: absolute;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: transform 0.25s ease;
}

.ga-arrow-d4df7291 svg {
    transition: fill 0.25s ease;
}

.ga-arrow-d4df7291:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Active Video Lightbox (Centered screen overlay, completely frameless) */
.ga-lightbox-overlay-d4df7291 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.ga-lightbox-player-container-d4df7291 {
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
}

/* Respect WP Admin bar height when fixed modal is active */
body.admin-bar .ga-lightbox-overlay-d4df7291 {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .ga-lightbox-overlay-d4df7291 {
        top: 46px;
    }
}
