@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;800;900&display=swap');

/*
 * Vixeoo Hero Slider — Accessible CSS
 * WCAG 2.1 AA compliant:
 *   - prefers-reduced-motion kills ALL animations
 *   - focus-visible rings on every interactive element
 *   - Touch targets meet 44×44px minimum (WCAG 2.5.5)
 *   - outline:none removed — replaced with :focus-visible
 *   - forced-colors (Windows High Contrast) support
 *   - Color never the only indicator of state
 */

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
.vx-slider {
    --vx-accent:            #f0762a;
    --vx-overlay:           rgba(0,0,0,0.55);
    --vx-progress:          #f0762a;
    --vx-price-color:       #ffffff;
    --vx-score-color:       #f5c518;
    --vx-text:              #ffffff;
    --vx-text-muted:        rgba(255,255,255,0.72);
    --vx-focus-ring:        #fff;
    --vx-focus-ring-offset: #000;

    --vx-fs-eyebrow:   clamp(0.85rem, 1.1vw,  1.25rem);
    --vx-fs-title:     clamp(2.2rem,  5vw,    7rem);
    --vx-fs-desc:      clamp(1rem,    1.35vw, 1.5rem);
    --vx-fs-release:   clamp(0.9rem,  1.1vw,  1.25rem);
    --vx-fs-price:     clamp(1.5rem,  2.5vw,  3rem);
    --vx-fs-score:     clamp(1.8rem,  3.2vw,  4rem);
    --vx-fs-badge:     clamp(0.75rem, 1vw,    1.1rem);
    --vx-fs-plat:      clamp(0.7rem,  0.9vw,  1rem);
    --vx-fs-btn-sm:    clamp(0.85rem, 1.05vw, 1.2rem);
    --vx-fs-btn-md:    clamp(0.95rem, 1.25vw, 1.5rem);
    --vx-fs-btn-lg:    clamp(1.1rem,  1.6vw,  2rem);

    --vx-pad-x:          6%;
    --vx-pad-y:          4%;
    --vx-gap:            0.75em;
    --vx-btn-radius:     0.25em;
    --vx-content-width:  min(42em, 44%);
    --vx-arrow-size:     clamp(2.75rem, 3.5vw, 4rem);
    --vx-dot-size:       clamp(0.75rem, 0.9vw, 1rem);
    --vx-progress-h:     0.18rem;
    --vx-max-height:     80dvh;

    --vx-trans-slide: 0.65s cubic-bezier(0.77,0,0.18,1);
    --vx-trans-fade:  0.8s ease;
    --vx-trans-text:  0.5s ease;
}

/* ══════════════════════════════════════
   SLIDER WRAPPER
══════════════════════════════════════ */
.vx-slider {
    position: relative;
    width: 100%;
    min-height: 14rem;
    max-height: var(--vx-max-height);
    overflow: hidden;
    background: #111;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(15px, 1.4vw, 22px);
}

/* ══════════════════════════════════════
   SLIDES — FADE
══════════════════════════════════════ */
.vx-trans-fade .vx-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--vx-trans-fade);
    pointer-events: none;
    z-index: 0;
}
.vx-trans-fade .vx-slide.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}

/* ══════════════════════════════════════
   SLIDES — SLIDE
══════════════════════════════════════ */
.vx-trans-slide .vx-slide {
    position: absolute;
    inset: 0;
    transition: transform var(--vx-trans-slide);
    z-index: 0;
}
.vx-trans-slide .vx-slide.active { z-index: 1; }

/* ══════════════════════════════════════
   MEDIA
══════════════════════════════════════ */
.vx-bg-img,
.vx-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════
   OVERLAY
══════════════════════════════════════ */
.vx-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--vx-overlay) 0%,
        rgba(0,0,0,0.22) 55%,
        rgba(0,0,0,0.04) 100%
    );
    pointer-events: none;
    z-index: 1;
}
.vx-slide[data-slide-href] { cursor: pointer; }
.vx-slide[data-slide-href]:focus-visible {
    outline: 3px solid var(--vx-focus-ring);
    outline-offset: -3px;
}

/* ══════════════════════════════════════
   CONTENT AREA
══════════════════════════════════════ */
.vx-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: var(--vx-pad-y) var(--vx-pad-x);
    max-width: var(--vx-content-width);
}

/* ══════════════════════════════════════
   STAGGERED TEXT ANIMATIONS
   (disabled entirely under reduced-motion)
══════════════════════════════════════ */
.vx-eyebrow, .vx-logo, .vx-title, .vx-platforms,
.vx-desc, .vx-release, .vx-score, .vx-price, .vx-buttons {
    opacity: 0;
    transform: translateY(1.1em);
    transition: opacity var(--vx-trans-text), transform var(--vx-trans-text);
}
.vx-slide.active .vx-eyebrow   { opacity:1; transform:none; transition-delay:0.20s; }
.vx-slide.active .vx-logo      { opacity:1; transform:none; transition-delay:0.28s; }
.vx-slide.active .vx-title     { opacity:1; transform:none; transition-delay:0.28s; }
.vx-slide.active .vx-platforms { opacity:1; transform:none; transition-delay:0.38s; }
.vx-slide.active .vx-desc      { opacity:1; transform:none; transition-delay:0.46s; }
.vx-slide.active .vx-release   { opacity:1; transform:none; transition-delay:0.52s; }
.vx-slide.active .vx-score     { opacity:1; transform:none; transition-delay:0.56s; }
.vx-slide.active .vx-price     { opacity:1; transform:none; transition-delay:0.62s; }
.vx-slide.active .vx-buttons   { opacity:1; transform:none; transition-delay:0.70s; }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.vx-eyebrow {
    font-size: var(--vx-fs-eyebrow);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vx-accent);
    margin-bottom: 0.6em;
}
.vx-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    margin-bottom: 0.8em;
    filter: drop-shadow(0 0.15em 0.8em rgba(0,0,0,0.55));
    object-fit: contain;
    object-position: left center;
}
.vx-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: var(--vx-fs-title);
    line-height: 1;
    color: var(--vx-text);
    letter-spacing: 0.02em;
    margin-bottom: 0.35em;
}
.vx-desc {
    font-size: var(--vx-fs-desc);
    font-weight: 500;
    color: var(--vx-text-muted);
    margin-bottom: 0.8em;
    line-height: 1.55;
    max-width: 32em;
}
.vx-release {
    font-size: var(--vx-fs-release);
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
    margin-bottom: 0.7em;
    display: flex;
    align-items: center;
    gap: 0.4em;
}
.vx-release i { font-size: 1em; vertical-align: middle; }

/* ══════════════════════════════════════
   PLATFORM BADGES
══════════════════════════════════════ */
.vx-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    margin-bottom: 0.7em;
}
.vx-platform-badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    border-radius: 0.2em;
    font-size: var(--vx-fs-plat);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

/* ══════════════════════════════════════
   SCORE
══════════════════════════════════════ */
.vx-score {
    display: flex;
    align-items: baseline;
    gap: 0.3em;
    margin-bottom: 0.7em;
}
.vx-score-value {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: var(--vx-fs-score);
    color: var(--vx-score-color);
    line-height: 1;
}
.vx-score-max {
    font-size: 0.45em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}
.vx-score-label {
    font-size: var(--vx-fs-plat);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-left: 0.3em;
    align-self: center;
}

/* ══════════════════════════════════════
   PRICE
══════════════════════════════════════ */
.vx-price {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: var(--vx-fs-price);
    color: var(--vx-price-color);
    letter-spacing: 0.04em;
    margin-bottom: 1em;
}
.vx-price ins { text-decoration: none; }
.vx-price del { opacity: 0.45; font-size: 0.68em; margin-right: 0.3em; }

/* ══════════════════════════════════════
   BADGE
══════════════════════════════════════ */
.vx-badge {
    position: absolute;
    top: 1.2em;
    right: 1.2em;
    z-index: 5;
    padding: 0.35em 0.8em;
    border-radius: 0.25em;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: var(--vx-fs-badge);
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0.15em 0.6em rgba(0,0,0,0.45);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.vx-buttons {
    display: flex;
    gap: var(--vx-gap);
    flex-wrap: wrap;
    margin-top: 0.3em;
}
.vx-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-family: 'Bebas Neue', Impact, sans-serif;
    letter-spacing: 0.12em;
    text-decoration: none;
    cursor: pointer;
    border: 0.1em solid transparent;
    white-space: nowrap;
    background: none;
    border-radius: var(--vx-btn-radius);
    transition: transform 0.15s ease, filter 0.15s ease, background 0.2s;
    line-height: 1;
    min-height: 2.75rem; /* helps hit 44px at most sizes */
}
.vx-btn-sm { padding: 0.5em 1em;    font-size: var(--vx-fs-btn-sm); }
.vx-btn-md { padding: 0.65em 1.4em; font-size: var(--vx-fs-btn-md); }
.vx-btn-lg { padding: 0.8em 1.8em;  font-size: var(--vx-fs-btn-lg); }

.vx-btn-filled  { background: var(--vx-accent); color: #fff; border-color: var(--vx-accent); }
.vx-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.vx-btn-outline:hover { background: rgba(255,255,255,0.1); }
.vx-btn-dark    { background: rgba(0,0,0,0.75); color: #fff; border-color: rgba(0,0,0,0.5); }
.vx-btn-dark:hover { background: rgba(0,0,0,0.9); }
.vx-btn-ghost   { background: transparent; color: #fff; border-color: transparent; text-decoration: underline; text-underline-offset: 0.2em; }
.vx-btn-ghost:hover { opacity: 0.75; }
.vx-btn-trailer,
.vx-btn-trailer-trigger {
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: 0.1em solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    cursor: pointer;
    font-family: 'Bebas Neue', Impact, sans-serif;
}
.vx-btn-trailer:hover,
.vx-btn-trailer-trigger:hover { background: rgba(0,0,0,0.75); border-color: #fff; }

/* Focus rings — every interactive element */
.vx-btn:focus-visible,
.vx-btn-trailer-trigger:focus-visible,
.vx-trailer-circle:focus-visible {
    outline: 3px solid var(--vx-focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--vx-focus-ring-offset);
}

.vx-trailer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    border: 0.1em solid currentColor;
    font-size: 0.65em;
    padding-left: 0.15em;
    flex-shrink: 0;
}

/* Hover effects */
.vx-hover-scale    .vx-btn:hover { transform: scale(1.05); }
.vx-hover-brighten .vx-btn:hover { filter: brightness(1.15); }
.vx-hover-both     .vx-btn:hover { transform: scale(1.04); filter: brightness(1.1); }
.vx-hover-none     .vx-btn:hover { transform: none; filter: none; }

/* ══════════════════════════════════════
   PAUSE / PLAY BUTTON
   WCAG 2.1 SC 2.2.2 — user can pause
   auto-advancing content
══════════════════════════════════════ */
.vx-pause-btn {
    position: absolute;
    bottom: 0.55em;
    right: 0.55em;
    z-index: 110;
    width: 2.2rem;
    height: 2.2rem;
    min-width: 44px;
    min-height: 44px;
    background: rgba(0,0,0,0.55);
    border: 0.1em solid rgba(255,255,255,0.35);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}
.vx-pause-btn:hover { background: rgba(0,0,0,0.85); border-color: rgba(255,255,255,0.75); }
.vx-pause-btn:focus-visible {
    outline: 3px solid var(--vx-focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--vx-focus-ring-offset);
}
.vx-pause-btn svg {
    width: 0.7em;
    height: 0.7em;
    pointer-events: none;
    fill: currentColor;
}
/* Show correct icon via data attribute toggled in JS */
.vx-pause-btn .vx-icon-pause { display: block; }
.vx-pause-btn .vx-icon-play  { display: none;  }
.vx-pause-btn[data-playing="false"] .vx-icon-pause { display: none;  }
.vx-pause-btn[data-playing="false"] .vx-icon-play  { display: block; }

/* ══════════════════════════════════════
   ARROWS
══════════════════════════════════════ */
.vx-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: all !important;
    background: rgba(0,0,0,0.5);
    border: 0.1em solid rgba(255,255,255,0.25);
    color: #fff;
    width: var(--vx-arrow-size);
    height: var(--vx-arrow-size);
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s, border-color 0.2s;
    /* outline:none REMOVED — replaced with :focus-visible */
    isolation: isolate;
}
.vx-arrow svg {
    width: clamp(0.9rem, 1.4vw, 1.5rem);
    height: clamp(0.9rem, 1.4vw, 1.5rem);
    pointer-events: none;
    display: block;
    flex-shrink: 0;
}
.vx-arrow:hover { background: var(--vx-accent); border-color: var(--vx-accent); }
.vx-arrow:focus-visible {
    outline: 3px solid var(--vx-focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--vx-focus-ring-offset);
    background: var(--vx-accent);
    border-color: var(--vx-accent);
}
.vx-arrow-prev { left: 1em; }
.vx-arrow-next { right: 1em; }

/* ══════════════════════════════════════
   DOTS
══════════════════════════════════════ */
.vx-dots {
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 0.5em;
    align-items: center;
    pointer-events: all;
    /* Keep away from the pause button in the bottom-right corner */
    padding-right: 3em;
}
.vx-dot {
    width: var(--vx-dot-size);
    height: var(--vx-dot-size);
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    pointer-events: all;
    transition: background 0.3s, transform 0.3s;
    position: relative;
}
/* Extend tap area to 44px without changing visual size */
.vx-dot::after {
    content: '';
    position: absolute;
    inset: -0.6rem;
}
/* Active: color + shape change — not color alone (WCAG 1.4.1) */
.vx-dot.active {
    background: var(--vx-accent);
    transform: scale(1.4);
    border-color: rgba(255,255,255,0.6);
}
.vx-dot:focus-visible {
    outline: 3px solid var(--vx-focus-ring);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px var(--vx-focus-ring-offset);
}

/* ══════════════════════════════════════
   PROGRESS BAR (decorative, aria-hidden)
══════════════════════════════════════ */
.vx-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: var(--vx-progress-h);
    width: 0%;
    background: var(--vx-progress);
    z-index: 100;
    pointer-events: none;
}

/* ══════════════════════════════════════
   CIRCLE PLAY BUTTON
══════════════════════════════════════ */
.vx-trailer-circle {
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0.25em 1.5em rgba(0,0,0,0.45);
    padding: 0;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
}
.vx-trailer-circle svg {
    width: 35%;
    height: 35%;
    margin-left: 8%;
    pointer-events: none;
}
.vx-trailer-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0.4em 2em rgba(0,0,0,0.6);
    filter: brightness(1.08);
}
.vx-trailer-circle-center {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%,-50%) !important;
    z-index: 6 !important;
    margin: 0 !important;
    opacity: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vx-trailer-circle-center:hover { transform: translate(-50%,-50%) scale(1.12) !important; }
.vx-trailer-circle-center::before {
    content: '';
    position: absolute;
    inset: -0.5em;
    border-radius: 50%;
    border: 0.12em solid rgba(255,255,255,0.5);
    opacity: 0;
    animation: vxRipple 2.2s ease-out infinite;
}
@keyframes vxRipple {
    0%   { inset: -0.2em; opacity: 0.6; }
    100% { inset: -1.2em; opacity: 0; }
}
.vx-trailer-circle-inline { display: inline-flex; }
.vx-trailer-btn-wrap {
    opacity: 0;
    transform: translateY(1em);
    transition: opacity 0.5s ease 0.75s, transform 0.5s ease 0.75s;
}
.vx-slide.active .vx-trailer-btn-wrap { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.vx-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vx-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}
.vx-lightbox-inner {
    position: relative;
    z-index: 2;
    width: 90vw;
    max-width: 60em;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 0.5em 3em rgba(0,0,0,0.8);
}
.vx-lightbox-inner iframe,
.vx-lightbox-inner video { width: 100%; height: 100%; border: none; display: block; }
.vx-lightbox-close {
    position: absolute;
    top: -3em;
    right: 0;
    background: rgba(0,0,0,0.55);
    border: 0.1em solid rgba(255,255,255,0.45);
    border-radius: 0.3em;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 3;
    padding: 0.45em 0.9em;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    transition: background 0.2s;
    white-space: nowrap;
}
.vx-lightbox-close:hover { background: rgba(0,0,0,0.85); border-color: #fff; }
.vx-lightbox-close:focus-visible {
    outline: 3px solid var(--vx-focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--vx-focus-ring-offset);
}
.vx-lightbox.vx-lb-open .vx-lightbox-inner {
    animation: vxLbIn 0.25s ease;
}
@keyframes vxLbIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

/* ══════════════════════════════════════
   SR-ONLY LIVE ANNOUNCER
   Visually hidden — screen readers only
══════════════════════════════════════ */
.vx-sr-announcer {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile
══════════════════════════════════════ */
@media (max-width: 600px) {
    .vx-slider {
        aspect-ratio: 4/3 !important;
        max-height: 100vw;
        font-size: clamp(13px, 3.5vw, 16px);
    }
    /* When a fixed height is set via inline style, respect it and drop aspect-ratio */
    .vx-slider[style*="height:"] {
        aspect-ratio: unset !important;
        max-height: none;
    }
    .vx-content {
        max-width: 100%;
        padding: 5% 5% 3.5rem 5%;
        justify-content: flex-end !important;
    }
    .vx-slide::after {
        background: linear-gradient(to top, var(--vx-overlay) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
    }
    .vx-badge { top: 0.75em; right: 0.75em; }
    .vx-lightbox-inner { width: 96vw; }
    .vx-lightbox-close { top: -3.2em; }
    .vx-dots { padding-right: 3.5em; }
}

/* ══════════════════════════════════════
   RESPONSIVE — large screens
══════════════════════════════════════ */
@media (min-width: 1440px) { .vx-slider { font-size: clamp(16px, 1.15vw, 22px); } }
@media (min-width: 2560px) { .vx-slider { font-size: clamp(20px, 1.1vw, 28px); } }
@media (min-width: 3840px) { .vx-slider { font-size: clamp(26px, 1.05vw, 38px); } }

/* ══════════════════════════════════════
   PREFERS-REDUCED-MOTION
   WCAG 2.1 SC 2.3.3 (Animation from
   Interactions) — all motion disabled.
   Content appears instantly.
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .vx-slider {
        --vx-trans-slide: 0ms;
        --vx-trans-fade:  0ms;
        --vx-trans-text:  0ms;
    }
    .vx-slider *,
    .vx-slider *::before,
    .vx-slider *::after {
        animation-duration:        0.01ms !important;
        animation-iteration-count: 1      !important;
        transition-duration:       0.01ms !important;
        transition-delay:          0ms    !important;
    }
    /* Make all text visible immediately — no stagger */
    .vx-eyebrow, .vx-logo, .vx-title, .vx-platforms,
    .vx-desc, .vx-release, .vx-score, .vx-price,
    .vx-buttons, .vx-trailer-btn-wrap {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════════════
   FORCED COLORS — Windows High Contrast
   WCAG 2.1 SC 1.4.11
══════════════════════════════════════ */
@media (forced-colors: active) {
    .vx-slide::after { display: none; } /* overlay hides content */
    .vx-btn {
        forced-color-adjust: none;
        border: 2px solid ButtonText;
        background: ButtonFace;
        color: ButtonText;
    }
    .vx-btn:focus-visible,
    .vx-arrow:focus-visible,
    .vx-dot:focus-visible,
    .vx-pause-btn:focus-visible,
    .vx-lightbox-close:focus-visible,
    .vx-trailer-circle:focus-visible { outline: 3px solid Highlight; }
    .vx-dot.active { background: Highlight; border-color: HighlightText; }
    .vx-arrow, .vx-pause-btn, .vx-lightbox-close {
        border: 2px solid ButtonText;
        background: ButtonFace;
        color: ButtonText;
        forced-color-adjust: none;
    }
}

/* ══════════════════════════════════════
   SLIDER WRAP + SIDE PANEL
   Right-hand "up next" showcase
══════════════════════════════════════ */

/* Outer flex wrapper injected by JS */
.vx-slider-wrap {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #0d0d0d;
    overflow: hidden;
}

/* The slider itself shrinks to make room */
.vx-slider-wrap .vx-slider {
    flex: 1 1 auto;
    min-width: 0;
    max-height: none; /* let the wrap control height */
}

/* ── SIDE PANEL ── */
.vx-side-panel {
    flex: 0 0 260px;
    width: 260px;
    display: flex;
    flex-direction: column;
    background: #111;
    border-left: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.vx-side-panel-header {
    padding: 0.85em 1.1em 0.6em;
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.vx-side-panel-list {
    flex: 1 1 auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.vx-side-panel-list::-webkit-scrollbar { width: 3px; }
.vx-side-panel-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

/* ── PANEL ITEMS ── */
.vx-panel-item {
    display: flex;
    align-items: center;
    gap: 0.75em;
    padding: 0.65em 1em;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    transition: background 0.2s;
    position: relative;
    width: 100%;
    color: #fff;
    font-family: 'Barlow', sans-serif;
}
.vx-panel-item:hover { background: rgba(255,255,255,0.05); }
.vx-panel-item:focus-visible {
    outline: 2px solid var(--vx-accent, #f0762a);
    outline-offset: -2px;
}

/* Active (currently playing) item */
.vx-panel-item.vx-panel-active {
    background: rgba(240,118,42,0.1);
    border-left: 3px solid var(--vx-accent, #f0762a);
}
.vx-panel-item.vx-panel-active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--vx-accent, #f0762a);
}

/* Next item subtle highlight */
.vx-panel-item.vx-panel-next-up {
    background: rgba(255,255,255,0.03);
}

/* ── THUMBNAIL ── */
.vx-panel-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 48px;
    border-radius: 0.25em;
    overflow: hidden;
    background: #1a1a1a;
    position: relative;
}
.vx-panel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.vx-panel-item:hover .vx-panel-thumb img { transform: scale(1.06); }

/* Play icon overlay on active */
.vx-panel-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    background: rgba(0,0,0,0.35);
}
.vx-panel-item.vx-panel-active .vx-panel-thumb-overlay { opacity: 1; }
.vx-panel-thumb-overlay svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* ── TEXT ── */
.vx-panel-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}
.vx-panel-tag {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vx-accent, #f0762a);
    line-height: 1;
}
.vx-panel-next-up .vx-panel-tag { color: rgba(255,255,255,0.45); }
.vx-panel-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vx-panel-item.vx-panel-active .vx-panel-name { color: #fff; }
.vx-panel-eyebrow-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── NUMBER INDICATOR ── */
.vx-panel-num {
    flex-shrink: 0;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.05em;
    transition: color 0.2s;
    min-width: 1.6em;
    text-align: right;
}
.vx-panel-item.vx-panel-active .vx-panel-num { color: var(--vx-accent, #f0762a); }

/* ══════════════════════════════════════
   RESPONSIVE — tablet (hide panel, show
   bottom strip instead)
══════════════════════════════════════ */
@media (max-width: 900px) {
    .vx-slider-wrap {
        flex-direction: column;
    }
    .vx-side-panel {
        flex: 0 0 auto;
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
        max-height: 110px;
    }
    .vx-side-panel-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .vx-side-panel-list::-webkit-scrollbar { display: none; }
    .vx-panel-item {
        flex: 0 0 180px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.05);
        padding: 0.6em 0.8em;
        gap: 0.4em;
    }
    .vx-panel-item.vx-panel-active {
        border-left: none;
        border-top: 2px solid var(--vx-accent, #f0762a);
    }
    .vx-panel-item.vx-panel-active::before { display: none; }
    .vx-panel-thumb {
        width: 100%;
        height: 44px;
    }
    .vx-panel-num { display: none; }
    .vx-side-panel-header {
        display: none;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — mobile (hide completely)
══════════════════════════════════════ */
@media (max-width: 600px) {
    .vx-side-panel {
        display: none;
    }
    .vx-slider-wrap {
        flex-direction: column;
    }
}
