/* ============================================================
   KivoPlay — Premium Home Styles (v2)
   Ultra-Cinematic Mobile-First Design
   ============================================================ */

/* ── HERO v2 ─────────────────────────────────────────────────── */
.sv-hero {
    position: relative;
    height: 100svh;
    min-height: 580px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Slides container */
.sv-hero__slides {
    position: absolute;
    inset: 0;
}

.sv-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.sv-hero__slide.is-active {
    opacity: 1;
}

/* BG image - fills entire hero, zooms slightly on active */
.sv-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sv-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform-origin: center;
    transition: transform 8s ease;
}

.sv-hero__slide.is-active .sv-hero__bg-img {
    transform: scale(1.06);
}

/* Cinematic Overlays */
.sv-hero__overlay {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

.sv-hero__overlay--bottom {
    bottom: 0;
    height: 75%;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 1) 0%,
            rgba(5, 5, 5, 0.85) 30%,
            rgba(5, 5, 5, 0.3) 65%,
            transparent 100%);
}

.sv-hero__overlay--left {
    top: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to right,
            rgba(5, 5, 5, 0.7) 0%,
            transparent 100%);
}

.sv-hero__overlay--top {
    top: 0;
    height: 160px;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.6) 0%,
            transparent 100%);
}

.sv-hero__bg--fallback {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, #1a0005, #050505);
}

/* Hero Content */
.sv-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 680px;
    padding: 0 20px 90px;
    margin: 0 auto;
    animation: heroContentIn 0.8s ease forwards;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badges */
.sv-hero__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.sv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.sv-badge--live {
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.5);
    color: #ff6b82;
}

.sv-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4060;
    box-shadow: 0 0 6px #ff4060;
    animation: pulseDot 1.4s ease infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.sv-badge--pg {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

/* Title */
.sv-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 2px 2px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to bottom, #fff 40%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stars & Meta */
.sv-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.sv-hero__stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.sv-hero__stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.sv-hero__score {
    margin-left: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fbbf24;
}

.sv-hero__meta-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sv-hero__meta-pills span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
}

.sv-hero__meta-pills span+span::before {
    content: '·';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* Synopsis */
.sv-hero__synopsis {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action Buttons */
.sv-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── NEW BUTTONS ─────────────────────────────────────────────── */
.sv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.sv-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sv-btn__label {
    padding: 0 20px 0 4px;
    white-space: nowrap;
}

/* Play Button — Red Glowing */
.sv-btn--play {
    background: var(--red);
    color: white;
    box-shadow: 0 6px 30px rgba(229, 9, 20, 0.55), 0 0 0 0 rgba(229, 9, 20, 0.4);
}

.sv-btn--play .sv-btn__icon {
    background: rgba(0, 0, 0, 0.25);
}

.sv-btn--play .sv-btn__icon i {
    color: var(--yellow);
    filter: drop-shadow(0 0 4px rgba(255, 180, 0, 0.4));
}

.sv-btn--play:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 12px 40px rgba(229, 9, 20, 0.7), 0 0 15px rgba(255, 180, 0, 0.3);
}

.sv-btn--play:active {
    transform: scale(0.97);
}

/* Info Button — Glass */
.sv-btn--info {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.sv-btn--info .sv-btn__icon {
    background: rgba(255, 255, 255, 0.08);
}

.sv-btn--info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.04) translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Icon-only button */
.sv-btn--icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sv-btn--icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Wide button (for CTA) */
.sv-btn--wide .sv-btn__label {
    padding-right: 28px;
}

/* Hero Dots */
.sv-hero__dots {
    display: flex;
    gap: 6px;
    margin-top: 28px;
    align-items: center;
}

.sv-hero__dot {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
}

.sv-hero__dot-bar {
    display: block;
    height: 3px;
    width: 24px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.sv-hero__dot.is-active .sv-hero__dot-bar {
    width: 40px;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

/* Scroll hint */
.sv-hero__scroll-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── GENRE PILL STRIP ────────────────────────────────────────── */
.sv-genre-strip {
    padding: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
    position: relative;
    z-index: 5;
    margin-top: -2px;
}

.sv-genre-strip__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 20px 20px;
    scrollbar-width: none;
}

.sv-genre-strip__scroll::-webkit-scrollbar {
    display: none;
}

.sv-genre-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sv-genre-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.sv-genre-pill--all {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.sv-genre-pill--all:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
}

.sv-genre-pill i {
    font-size: 0.75rem;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.sv-section {
    padding: 32px 0 8px;
}

.sv-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 16px;
}

.sv-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-section__accent {
    width: 4px;
    height: 22px;
    border-radius: 99px;
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
    flex-shrink: 0;
}

.sv-section__accent--fire {
    background: linear-gradient(to bottom, #ff4500, #e50914);
}

.sv-section__accent--gold {
    background: linear-gradient(to bottom, #fbbf24, #f59e0b);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.sv-section__title {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-section__badge {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.sv-section__controls {
    display: flex;
    gap: 6px;
}

.sv-section__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-ctrl-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sv-ctrl-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.sv-see-all {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.sv-see-all:hover {
    color: var(--red);
}

/* ── TOP 10 ROW ──────────────────────────────────────────────── */
.sv-top10-row {
    padding-left: 28px !important;
}

.sv-top10-item {
    position: relative;
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
    padding-left: 20px;
}

.sv-top10-item:hover,
.sv-top10-item:focus-visible {
    transform: scale(1.08) translateY(-5px);
    z-index: 10;
}

.sv-top10-item__rank {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.8;
    color: #050505;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.4);
    position: absolute;
    left: -15px;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.sv-top10-item:hover .sv-top10-item__rank {
    -webkit-text-stroke: 2px var(--red);
    color: rgba(229, 9, 20, 0.1);
    transform: translateX(-5px);
}

.sv-top10-item__poster {
    position: relative;
    width: 150px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    background: #111;
}

.sv-top10-item__poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
}

.sv-top10-item__poster img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.sv-top10-item__play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    font-size: 1.5rem;
    color: white;
}

.sv-top10-item:hover .sv-top10-item__play {
    opacity: 1;
}

/* ── CONTINUE WATCHING CARDS ─────────────────────────────────── */
.sv-cw-row {
    gap: 12px !important;
}

.sv-cw-card {
    flex-shrink: 0;
    width: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    cursor: pointer;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

.sv-cw-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.sv-cw-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.sv-cw-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-cw-card__play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    font-size: 1.8rem;
    color: white;
}

.sv-cw-card:hover .sv-cw-card__play {
    opacity: 1;
}

.sv-cw-card__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.sv-cw-card__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), #ff6b82);
    border-radius: 0 99px 99px 0;
}

.sv-cw-card__info {
    padding: 10px 12px;
}

.sv-cw-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sv-cw-card__pct {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ── SPOTLIGHT BANNER (mid-page) ─────────────────────────────── */
.sv-spotlight {
    position: relative;
    border-radius: 20px;
    margin: 32px 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.sv-spotlight__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sv-spotlight__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.2);
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.sv-spotlight:hover .sv-spotlight__bg img {
    transform: scale(1.08);
}

.sv-spotlight__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 5, 5, 0.9) 0%,
            rgba(5, 5, 5, 0.5) 50%,
            transparent 100%);
}

.sv-spotlight__content {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    max-width: 480px;
}

.sv-spotlight__title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    margin: 12px 0 8px;
    line-height: 1.1;
}

.sv-spotlight__rating {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 10px;
    font-weight: 600;
}

.sv-spotlight__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── JOIN CTA BANNER ─────────────────────────────────────────── */
.sv-cta-banner {
    margin: 40px 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse at top left, rgba(229, 9, 20, 0.25), rgba(5, 5, 5, 0.9) 60%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.15), transparent 60%);
    border: 1px solid rgba(229, 9, 20, 0.2);
}

.sv-cta-banner__glow {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.25);
    filter: blur(60px);
    pointer-events: none;
}

.sv-cta-banner__inner {
    padding: 48px 32px;
    text-align: center;
    position: relative;
}

.sv-cta-banner__icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.5));
}

.sv-cta-banner__title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
}

.sv-cta-banner__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.sv-cta-banner__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sv-cta-banner__features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.sv-cta-banner__features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sv-cta-banner__features i {
    color: #34d399;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ── MOBILE OVERRIDES ────────────────────────────────────────── */
@media (max-width: 768px) {
    .sv-hero {
        max-height: 100svh;
        min-height: 100svh;
    }

    .sv-hero__bg-img {
        object-position: center center;
    }

    .sv-hero__overlay--left {
        width: 100%;
        background: linear-gradient(to right,
                rgba(5, 5, 5, 0.5) 0%,
                transparent 100%);
    }

    .sv-hero__overlay--bottom {
        height: 85%;
        background: linear-gradient(to top,
                rgba(5, 5, 5, 1) 0%,
                rgba(5, 5, 5, 0.9) 25%,
                rgba(5, 5, 5, 0.5) 55%,
                transparent 100%);
    }

    .sv-hero__content {
        padding: 0 16px 80px;
        max-width: 100%;
        margin: 0;
        align-items: flex-start;
        animation: heroContentInMobile 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes heroContentInMobile {
        0% {
            opacity: 0;
            transform: translateY(50px) scale(0.98);
            filter: blur(10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }

    .sv-hero__title {
        font-size: clamp(2.4rem, 12vw, 3.8rem);
        letter-spacing: -1px;
        margin-bottom: 12px;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.8);
        background: linear-gradient(to right, #ffffff, #a0a0a0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: glowTitle 3s ease-in-out infinite alternate;
    }

    @keyframes glowTitle {
        0% {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.8);
            filter: brightness(1);
        }

        100% {
            text-shadow: 0 0 25px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(0, 0, 0, 0.8);
            filter: brightness(1.2);
        }
    }

    .sv-hero__synopsis {
        font-size: 0.95rem;
        line-height: 1.6;
        -webkit-line-clamp: 3;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .sv-hero__meta {
        margin-bottom: 16px;
    }

    .sv-hero__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        position: relative;
    }

    .sv-btn {
        width: 100%;
        justify-content: center;
        padding: 6px;
        border-radius: 16px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .sv-btn__icon {
        width: 38px;
        height: 38px;
    }

    .sv-btn__label {
        font-size: 1rem;
        padding: 0 16px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .sv-btn--play {
        background: var(--red);
        border: 1px solid rgba(255, 90, 100, 0.4);
        box-shadow: 0 8px 32px rgba(229, 9, 20, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
        animation: pulseButton 2s infinite;
    }

    @keyframes pulseButton {
        0% {
            box-shadow: 0 8px 32px rgba(229, 9, 20, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
        }

        50% {
            box-shadow: 0 8px 45px rgba(229, 9, 20, 0.8), inset 0 2px 4px rgba(255, 255, 255, 0.3);
            transform: scale(1.02);
        }

        100% {
            box-shadow: 0 8px 32px rgba(229, 9, 20, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
        }
    }

    .sv-btn--info {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sv-btn--icon {
        position: absolute;
        top: -60px;
        right: 0;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        width: 44px;
        height: 44px;
    }

    .sv-hero__dots {
        justify-content: center;
        margin-top: 20px;
    }

    .sv-section {
        padding-top: 24px;
    }

    .sv-section__head {
        padding: 0 16px 16px;
    }

    .sv-ctrl-btn {
        display: none;
    }

    /* Arrow buttons hidden on mobile */
    .sv-section__title {
        font-size: 1.15rem;
    }

    .sv-top10-item {
        width: 140px;
        padding-left: 10px;
    }

    .sv-top10-item__rank {
        font-size: 4.5rem;
        width: 45px;
        left: -10px;
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    }

    .sv-top10-item__poster {
        width: 100px;
    }

    .sv-cw-card {
        width: 200px;
    }

    .sv-spotlight {
        margin: 24px 16px;
        min-height: 250px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .sv-spotlight__content {
        padding: 24px 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    }

    .sv-cta-banner {
        margin: 30px 16px;
        border-radius: 24px;
        border: 1px solid rgba(229, 9, 20, 0.4);
        box-shadow: 0 10px 40px rgba(229, 9, 20, 0.15);
    }

    .sv-cta-banner__inner {
        padding: 40px 20px;
    }

    .sv-cta-banner__title {
        font-size: 1.8rem;
    }

    .sv-cta-banner__features {
        gap: 12px;
        font-size: 0.8rem;
    }

    .sv-hero__scroll-hint {
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .sv-hero {
        min-height: 100svh;
    }

    .sv-hero__title {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
        letter-spacing: -0.5px;
    }

    .sv-hero__synopsis {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        margin-bottom: 18px;
    }

    .sv-hero__meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }

    .sv-hero__actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .sv-hero__actions .sv-btn {
        justify-content: center;
        width: 100%;
    }

    .sv-hero__content {
        padding: 0 14px 70px;
    }

    .sv-hero__badges {
        margin-bottom: 10px;
    }

    .sv-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .sv-cta-banner__desc {
        font-size: 0.9rem;
    }

    .sv-genre-pill {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .sv-genre-strip__scroll {
        padding: 12px 14px 16px;
        gap: 6px;
    }

    .sv-top10-item {
        width: 130px;
    }

    .sv-top10-item__poster {
        width: 90px;
    }

    .sv-top10-item__rank {
        font-size: 4rem;
        width: 40px;
    }

    .sv-card {
        width: 118px;
    }

    .sv-card__info {
        padding: 8px 8px 10px;
    }

    .sv-section .cards-row {
        padding: 4px 14px 16px;
    }

    .sv-section__head {
        padding: 0 14px 12px;
    }

    .sv-spotlight {
        margin: 20px 14px;
        min-height: 220px;
    }

    .sv-spotlight__content {
        padding: 20px 16px;
    }

    .sv-spotlight__title {
        font-size: 1.2rem;
    }

    .sv-cta-banner {
        margin: 24px 14px;
    }

    .sv-cta-banner__inner {
        padding: 32px 16px;
    }

    .sv-cta-banner__title {
        font-size: 1.5rem;
    }

    .sv-hero__dots {
        margin-top: 16px;
    }

    .sv-hero__dot-bar {
        width: 20px;
        height: 2.5px;
    }

    .sv-hero__dot.is-active .sv-hero__dot-bar {
        width: 32px;
    }
}

/* ── PREMIUM MOVIE CARD v2 ────────────────────────────────────── */
.sv-card {
    position: relative;
    flex-shrink: 0;
    width: 158px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    scroll-snap-align: start;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.35s ease;
    outline: none;
}

.sv-card:hover,
.sv-card:focus-visible {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(229, 9, 20, 0.25);
    z-index: 20;
}

/* Poster */
.sv-card__poster {
    position: relative;
    padding-top: 150%;
    overflow: hidden;
    background: #111;
}

.sv-card__poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.sv-card:hover .sv-card__poster img {
    transform: scale(1.08);
}

/* Badge */
.sv-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    z-index: 3;
}

.sv-card__badge--new {
    background: var(--red);
    color: #fff;
    box-shadow: 0 2px 10px rgba(229, 9, 20, 0.5);
}

.sv-card__badge--feat {
    background: rgba(251, 191, 36, 0.85);
    color: #000;
}

/* Watchlist */
.sv-card__wl-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 3;
    cursor: pointer;
}

.sv-card:hover .sv-card__wl-btn {
    opacity: 1;
}

.sv-card__wl-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.15);
}

/* Hover Overlay */
.sv-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.6) 45%,
            rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.sv-card:hover .sv-card__overlay {
    opacity: 1;
}

.sv-card__overlay-inner {
    width: 100%;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
}

/* Play button inside card */
.sv-card__play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.6);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
    margin-left: 2px;
}

.sv-card__play:hover {
    transform: scale(1.18);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.8);
}

.sv-card__score {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sv-card__more {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.sv-card__more:hover {
    color: #fff;
}

/* Info below poster */
.sv-card__info {
    padding: 10px 10px 12px;
}

.sv-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.sv-card__meta {
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sv-card__dot {
    color: var(--muted-2);
}

/* Mobile card sizing */
@media (max-width: 768px) {
    .sv-card {
        width: 136px;
        border-radius: 10px;
    }

    .sv-card__title {
        font-size: 0.8rem;
    }

    /* On mobile: tap to show overlay (using :active state) */
    .sv-card:active .sv-card__overlay {
        opacity: 1;
    }

    .sv-card:active .sv-card__wl-btn {
        opacity: 1;
    }

    /* Keep wl-btn visible always on mobile for easy access */
    .sv-card__wl-btn {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .sv-card {
        width: 118px;
    }

    .sv-card__info {
        padding: 8px 8px 10px;
    }
}

/* Ensure cards-row has no padding conflict */
.sv-section .cards-row {
    padding: 4px 20px 16px;
}