:root {
    --stream-bg: #0b0b0f;
    --stream-surface: rgba(20, 20, 26, 0.92);
    --stream-surface-soft: rgba(27, 27, 34, 0.72);
    --stream-surface-strong: #16161d;
    --stream-border: rgba(255, 255, 255, 0.08);
    --stream-text: #ffffff;
    --stream-muted: #b3b3b3;
    --stream-accent: #e50914;
    --stream-accent-soft: #ff4d5a;
    --stream-accent-alt: #2f6bff;
    --stream-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    --stream-radius-xl: 28px;
    --stream-radius-lg: 22px;
    --stream-radius-md: 16px;
    --stream-radius-sm: 12px;
    --stream-max-width: 1420px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.stream-app {
    position: relative;
    min-height: 100vh;
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(229, 9, 20, 0.18), transparent 25%),
        radial-gradient(circle at 85% 5%, rgba(47, 107, 255, 0.14), transparent 20%),
        var(--stream-bg);
    color: var(--stream-text);
}

body.stream-app a {
    color: inherit;
    text-decoration: none;
}

body.stream-app button,
body.stream-app input,
body.stream-app select,
body.stream-app textarea {
    font: inherit;
}

.stream-app__backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.stream-app__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.22;
}

.stream-app__glow--one {
    inset: -8rem auto auto -12rem;
    width: 24rem;
    height: 24rem;
    background: rgba(229, 9, 20, 0.8);
}

.stream-app__glow--two {
    inset: auto -10rem 6rem auto;
    width: 22rem;
    height: 22rem;
    background: rgba(47, 107, 255, 0.75);
}

.pad-x {
    width: min(calc(100% - 2rem), var(--stream-max-width));
    margin-inline: auto;
}

.page-shell {
    padding-bottom: 5rem;
}
.stream-navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    transition: all 0.3s ease;
}

.stream-navbar.scrolled {
    backdrop-filter: blur(22px);
    background: linear-gradient(
        180deg,
        rgba(11, 11, 15, 0.94),
        rgba(11, 11, 15, 0.72)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}



.stream-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.5rem;
}

.stream-navbar__left,
.stream-navbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stream-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.stream-brand__lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stream-brand__mark {
    width: 2.45rem;
    height: 2.45rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.98), rgba(255, 77, 90, 0.88));
    color: #fff;
    box-shadow: 0 16px 28px rgba(229, 9, 20, 0.22);
    font-size: 1rem;
    line-height: 1;
}

.stream-brand__wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.08rem;
    font-size: 1.02rem;
    line-height: 1;
    white-space: nowrap;
}

.stream-brand__word {
    color: var(--stream-text);
}

.stream-brand__accent {
    background: linear-gradient(135deg, var(--stream-accent), var(--stream-accent-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stream-brand--footer .stream-brand__mark {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 1rem;
}

.stream-brand--footer .stream-brand__wordmark {
    font-size: 1.08rem;
}

.stream-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.stream-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    height: 2.7rem;
    padding: 0 1rem;
    border-radius: 999px;
    color: var(--stream-muted);
    transition: 180ms ease;
}

.stream-nav__link:hover,
.stream-nav__link.is-active {
    color: var(--stream-text);
    background: rgba(255, 255, 255, 0.06);
}

.stream-nav__search {
    border: 0;
    background: transparent;
}

.stream-icon-button {
    width: 2.9rem;
    height: 2.9rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--stream-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--stream-text);
    transition: 180ms ease;
}

.stream-icon-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stream-plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.98), rgba(255, 77, 90, 0.88));
    box-shadow: 0 18px 35px rgba(229, 9, 20, 0.24);
    font-weight: 700;
}

.stream-account {
    position: relative;
}

.stream-account__trigger {
    width: 3rem;
    height: 3rem;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: transparent;
}

.stream-account__trigger img,
.stream-account__summary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream-account__dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.3rem;
    background: rgba(18, 18, 25, 0.96);
    box-shadow: var(--stream-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
}

.stream-account.is-open .stream-account__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* UNUSED CSS AUDIT: account dropdown detail block has no active template references.
.stream-account__summary {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-account__summary img {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 999px;
}

.stream-account__summary strong,
.stream-account__membership strong {
    display: block;
}

.stream-account__summary span,
.stream-account__membership span {
    color: var(--stream-muted);
    font-size: 0.92rem;
}

.stream-account__membership {
    padding: 1rem 0;
}

.stream-account__link,
.stream-account__cta {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    margin-top: 0.5rem;
    transition: 180ms ease;
}

.stream-account__link {
    background: rgba(255, 255, 255, 0.04);
    color: var(--stream-muted);
}

.stream-account__cta {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.94), rgba(255, 77, 90, 0.9));
    font-weight: 700;
    text-align: center;
}
*/

.stream-search-panel {
    padding: 0 0 1.25rem;
}

.stream-search-panel__inner {
    position: relative;
    max-width: 46rem;
}

.stream-search {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 3.75rem;
    padding: 0 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.3rem;
    background: rgba(19, 19, 26, 0.92);
}

.stream-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--stream-text);
    background: transparent;
}

.stream-search input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.stream-search button {
    border: 0;
    background: transparent;
    color: var(--stream-muted);
}

.stream-search-results {
    position: absolute;
    inset: calc(100% + 0.6rem) 0 auto;
    display: none;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.3rem;
    background: rgba(18, 18, 25, 0.98);
    box-shadow: var(--stream-shadow);
}

.stream-search-results.is-open {
    display: block;
}

.stream-search-results__list {
    display: grid;
    gap: 0.4rem;
}

.stream-search-results__empty {
    display: none;
    padding: 1.1rem;
    text-align: center;
    color: var(--stream-muted);
}

.stream-search-results__empty.is-visible {
    display: block;
}

.stream-search-result {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem;
    border-radius: 1rem;
    transition: 180ms ease;
}

.stream-search-result:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stream-search-result img {
    width: 3.2rem;
    height: 4.3rem;
    object-fit: cover;
    border-radius: 0.8rem;
}

.stream-search-result strong {
    display: block;
}

.stream-search-result span {
    color: var(--stream-muted);
    font-size: 0.9rem;
}

.stream-search-result__meta {
    margin-left: auto;
    text-align: right;
}

.stream-mobile-only,
.stream-desktop-hidden {
    display: none;
}

.stream-mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(24rem, calc(100vw - 3rem));
    padding: 1.25rem;
    background: rgba(12, 12, 17, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-102%);
    transition: 220ms ease;
    z-index: 60;
}

.stream-mobile-drawer.is-open {
    transform: translateX(0);
}

.stream-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 220ms ease;
    z-index: 55;
}

.stream-mobile-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.stream-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stream-mobile-nav {
    display: grid;
    gap: 0.55rem;
}

.stream-mobile-nav a {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--stream-muted);
}

.stream-mobile-nav a.is-active {
    color: var(--stream-text);
    background: rgba(229, 9, 20, 0.16);
}

.stream-mobile-drawer__categories {
    margin-top: 1.6rem;
}

.stream-mobile-drawer__categories > span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--stream-muted);
}

.stream-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.stream-chip {
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--stream-muted);
}

.hero-spotlight {
    padding-top: 1.4rem;
}

.hero-stack {
    position: relative;
    min-height: 35rem;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    /* border-radius: var(--stream-radius-xl); */
    background: #12121a;
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms ease, visibility 350ms ease, transform 350ms ease;
    transform: scale(0.985);
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide__backdrop,
.hero-slide__backdrop img,
.hero-slide__shade {
    position: absolute;
    inset: 0;
}

.hero-slide__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__shade {
    background:
        linear-gradient(90deg, rgba(6, 6, 10, 0.95) 8%, rgba(6, 6, 10, 0.78) 38%, rgba(6, 6, 10, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 6, 10, 0.05) 0%, rgba(6, 6, 10, 0.88) 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    height: 100%;
    max-width: 40rem;
    padding: clamp(2rem, 4vw, 3.4rem);
}

.hero-slide__eyebrow,
.stream-section__eyebrow,
.stream-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slide h1,
.stream-page-hero h1,
.detail-hero h1 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 0.95;
}

.hero-slide p,
.stream-page-hero p,
.detail-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-slide__meta,
.detail-hero__meta,
.stream-page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-slide__meta span,
.detail-hero__meta span,
.stream-page-hero__meta span,
.stream-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.2rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.hero-slide__actions,
.detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-slide--live .hero-slide__shade {
    background:
        linear-gradient(90deg, rgba(30, 6, 9, 0.96) 4%, rgba(66, 10, 15, 0.84) 36%, rgba(139, 18, 33, 0.2) 100%),
        linear-gradient(180deg, rgba(32, 6, 10, 0.18) 0%, rgba(20, 5, 8, 0.9) 100%);
}

.hero-slide--live .hero-slide__eyebrow {
    background: rgba(229, 9, 20, 0.16);
    color: #ffd4d7;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slide--live h1 {
    background: linear-gradient(135deg, #fff7f7 0%, #ffb4ba 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-slide--live p {
    color: rgba(255, 232, 234, 0.9);
}

.hero-slide--live .hero-slide__meta span {
    background: rgba(229, 9, 20, 0.16);
    color: #fff5f6;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.stream-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.2rem;
    padding: 0 1.3rem;
    border: 0;
    border-radius: 999px;
    transition: 180ms ease;
}

.stream-button--primary {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.98), rgba(255, 77, 90, 0.9));
    color: #fff;
    box-shadow: 0 18px 35px rgba(229, 9, 20, 0.24);
}

.stream-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--stream-text);
}

.stream-button.is-saved {
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.14);
}

.stream-button:hover,
.stream-icon-button:hover,
.stream-account__link:hover,
.stream-account__cta:hover,
.stream-card:hover {
    transform: translateY(-2px);
}

.hero-stack__pager {
    position: absolute;
    right: 1.6rem;
    bottom: 1.5rem;
    display: flex;
    gap: 0.55rem;
    z-index: 2;
}

.hero-stack__pager button {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-stack__pager button.is-active {
    width: 2rem;
    background: var(--stream-accent);
}

.stream-section {
    margin-top: 3rem;
}

.stream-section__header,
.stream-page-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.stream-section__header h2,
.stream-page-hero h1 {
    margin: 0.55rem 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.stream-section__link {
    color: rgba(255, 255, 255, 0.85);
}

.stream-scroller-shell {
    position: relative;
    margin-top: 1.35rem;
}

.stream-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(11.5rem, 15.5rem);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}

.stream-scroller::-webkit-scrollbar {
    display: none;
}

.stream-scroller.is-dragging {
    cursor: grabbing;
}

.stream-scroller__item {
    min-width: 0;
}

.stream-scroller__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 13, 18, 0.92);
    color: var(--stream-text);
    box-shadow: var(--stream-shadow);
}

.stream-scroller__button.is-left {
    left: -1.15rem;
}

.stream-scroller__button.is-right {
    right: -1.15rem;
}

.stream-card {
    transition: transform 180ms ease;
}

.stream-card__link {
    display: block;
}

.stream-card__poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #15151d 0%, #0e0e14 100%);
    box-shadow: var(--stream-shadow);
}

.stream-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.stream-card:hover .stream-card__poster img {
    transform: scale(1.05);
}

.stream-card__badges {
    position: absolute;
    inset: 0.75rem 0.75rem auto;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.stream-card__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(11, 11, 15, 0.72);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
}

.stream-card__badges .is-premium {
    background: rgba(229, 9, 20, 0.92);
}

.stream-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 0.9rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0.02), rgba(11, 11, 15, 0.9));
    opacity: 0;
    transition: 220ms ease;
}

.stream-card:hover .stream-card__overlay {
    opacity: 1;
}

.stream-card__play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: inline-grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    transform: translate(-50%, -50%);
}

.stream-card__overlay-copy strong {
    display: block;
}

.stream-card__overlay-copy span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.stream-card__caption {
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem 0.25rem 0;
}

.stream-card__progress {
    position: absolute;
    inset: auto 0 0;
    height: 0.26rem;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.stream-card__progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(229, 9, 20, 0.98), rgba(255, 77, 90, 0.88));
}

.stream-card__caption h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-card__caption p {
    margin: 0;
    color: var(--stream-muted);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-card--ranked {
    padding-left: 2rem;
}

.stream-card__rank {
    position: absolute;
    left: 0;
    bottom: 2.9rem;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.14);
    line-height: 1;
}

.stream-page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    margin-top: 1.4rem;
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--stream-radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(18, 18, 25, 0.88);
}

.stream-page-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto -6rem -8rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.13);
    filter: blur(18px);
    pointer-events: none;
}

.stream-page-hero__meta,
.stream-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.stream-page-hero__actions {
    margin-top: 1.3rem;
}

.stream-filter-bar {
    display: block;
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    background: rgba(18, 18, 24, 0.88);
}

/* UNUSED CSS AUDIT: legacy filter form action layout kept for reference.
.stream-filter-bar__form {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(14rem, 0.95fr) auto;
    gap: 1rem;
    align-items: end;
}

.stream-filter-field label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--stream-muted);
    font-size: 0.9rem;
}

.stream-filter-field--action {
    display: flex;
    flex-direction: column;
}

.stream-filter-field--action .stream-button {
    min-width: 9.5rem;
}
*/

.stream-select {
    width: 100%;
    min-height: 3.1rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.stream-select option {
    color: #111;
}

.library-grid,
.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
    gap: 1.25rem;
    margin-top: 1.6rem;
}

.library-load,
.stream-empty-state {
    margin-top: 1.4rem;
    text-align: center;
}

.library-load button {
    min-width: 12rem;
}

.stream-empty-state {
    padding: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 1.3rem;
    color: var(--stream-muted);
}

.stream-live-card {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    background: rgba(18, 18, 25, 0.88);
    box-shadow: var(--stream-shadow);
    transition: 180ms ease;
}

.stream-live-card:hover {
    transform: translateY(-3px);
}

/* UNUSED CSS AUDIT: legacy live card internals kept for reference.
.stream-live-card__logo {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.stream-live-card__logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.stream-live-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: 1rem;
}

.stream-live-card__meta strong {
    display: block;
}

.stream-live-card__meta span {
    color: var(--stream-muted);
    font-size: 0.9rem;
}

.stream-live-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.14);
    color: #fff;
    font-size: 0.85rem;
}
*/

.detail-hero {
    min-height: 28rem;
    display: flex;
    align-items: end;
}

.detail-hero__backdrop,
.detail-hero__shade {
    position: absolute;
    inset: 0;
}

.detail-hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.7) 38%, rgba(7, 7, 10, 0.2) 100%),
        linear-gradient(180deg, rgba(7, 7, 10, 0.05), rgba(7, 7, 10, 0.9));
}

.detail-hero__content {
    position: relative;
    z-index: 1;
    max-width: 44rem;
}

.detail-layout {
    /* display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(19rem, 0.85fr);
    gap: 1.4rem; */
    margin-top: 1.6rem;
}

.stream-panel {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.45rem;
    background: rgba(18, 18, 25, 0.88);
    box-shadow: var(--stream-shadow);
}

.player-frame {
    overflow: hidden;
    border-radius: 1.1rem;
    background: #000;
}

.player-frame video,
.video-js {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.player-locked {
    display: grid;
    gap: 1rem;
}

.player-locked img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1rem;
}

.stream-sidebar {
    display: grid;
    gap: 1rem;
}

/* UNUSED CSS AUDIT: legacy sidebar metadata helpers kept for reference.
.stream-sidebar__section h3 {
    margin: 0 0 0.85rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
}

.stream-sidebar__section p,
.stream-sidebar__meta li,
.stream-sidebar__episode-copy {
    margin: 0;
    color: var(--stream-muted);
    line-height: 1.7;
}

.stream-sidebar__meta {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.stream-sidebar__meta strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--stream-text);
}
*/

.stream-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.season-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    justify-content: space-between;
    margin: 1.25rem 0 0.9rem;
}

.season-toolbar h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 0.85rem;
}

.episode-card {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
    transition: 180ms ease;
    cursor: pointer;
}

.episode-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 0.7rem;
}

.episode-card strong {
    display: block;
    margin-bottom: 0.25rem;
}

.episode-card span {
    color: var(--stream-muted);
    font-size: 0.9rem;
}

.episode-card.is-active {
    border-color: rgba(229, 9, 20, 0.65);
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.3), 0 18px 30px rgba(229, 9, 20, 0.12);
}

.episode-card.is-disabled {
    opacity: 0.45;
}

.stream-footer {
    margin-top: 4rem;
    padding: 2.2rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(11, 11, 15, 0), rgba(11, 11, 15, 0.76));
}

.stream-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.stream-brand--footer {
    margin-bottom: 1rem;
}

.stream-footer__copy,
.stream-footer__bottom {
    color: var(--stream-muted);
    font-size: 13px;
}

.stream-footer__request {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--stream-text);
}

.stream-footer__links {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.stream-footer__grid h3 {
    margin: 0 0 1rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

.stream-footer__qr {
    display: inline-flex;
    padding: 0.7rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.stream-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
}

.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    background: rgba(18, 18, 25, 0.98);
    color: var(--stream-text);
}

.modal-header,
.modal-footer {
    border-color: rgba(255, 255, 255, 0.08);
}

.form-control,
.form-select {
    min-height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--stream-text);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.btn-close {
    filter: invert(1);
}

.video-js {
    font-family: "Inter", sans-serif;
}

.video-js .vjs-control-bar {
    background: linear-gradient(180deg, rgba(7, 7, 10, 0.15), rgba(7, 7, 10, 0.92));
}

.video-js .vjs-big-play-button {
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    border: 0;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.92);
    transform: translate(-50%, -50%);
}

@media (max-width: 1100px) {
    .stream-filter-bar__form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stream-filter-field--action {
        grid-column: 1 / -1;
    }

    .detail-layout,
    .stream-footer__grid {
        grid-template-columns: 1fr;
    }

    .stream-scroller__button {
        display: none;
    }
}

@media (max-width: 860px) {
    .stream-filter-bar__form {
        grid-template-columns: 1fr;
    }

    .stream-filter-field--action .stream-button {
        width: 100%;
    }

    .stream-desktop-only {
        display: none;
    }

    .stream-mobile-only,
    .stream-desktop-hidden {
        display: inline-grid;
    }

    .stream-plan-pill span {
        display: none;
    }

    .hero-stack {
        min-height: 30rem;
    }

    .hero-slide__content {
        max-width: 100%;
        justify-content: flex-end;
    }

    .stream-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .pad-x {
        width: min(calc(100% - 1.1rem), var(--stream-max-width));
    }

    .stream-navbar__inner {
        min-height: 4.7rem;
    }

    .hero-slide,
    .stream-page-hero,
    .detail-hero {
        border-radius: 1.4rem;
    }

    .library-grid,
    .live-grid,
    .episode-grid {
        grid-template-columns: 1fr;
    }

    .stream-filter-bar__form {
        gap: 0.8rem;
    }

    .stream-scroller {
        grid-auto-columns: minmax(10.5rem, 72vw);
    }

    .stream-account__dropdown {
        right: -0.5rem;
    }
}

.stream-page-section {
    margin-top: 1.5rem;
}

.stream-content-grid {
    display: grid;
    gap: 1.4rem;
}

.stream-auth-page,
.stream-copy-page,
.stream-profile-page,
.stream-plan-page,
.stream-payment-page {
    margin-top: 1.5rem;
}

.stream-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    gap: 1.4rem;
    align-items: stretch;
}

.stream-auth-hero,
.stream-auth-card,
.stream-copy-card,
.stream-plan-card,
.stream-payment-card,
.stream-profile-card,
.stream-faq-item {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--stream-radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(18, 18, 25, 0.88);
    box-shadow: var(--stream-shadow);
}

.stream-auth-hero::after,
.stream-auth-card::after,
.stream-copy-card::after,
.stream-plan-card::after,
.stream-payment-card::after,
.stream-profile-card::after {
    content: "";
    position: absolute;
    inset: auto -5rem -6rem auto;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.12);
    filter: blur(18px);
    pointer-events: none;
}

.stream-auth-hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: clamp(1.7rem, 4vw, 2.6rem);
    background:
        linear-gradient(135deg, rgba(229, 9, 20, 0.16), rgba(47, 107, 255, 0.08)),
        rgba(18, 18, 25, 0.92);
}

.stream-auth-hero__eyebrow,
.stream-copy-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stream-auth-hero h1,
.stream-copy-hero h1,
.stream-plan-hero h1,
.stream-payment-hero h1,
.stream-profile-hero h1 {
    margin: 1rem 0 0.75rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 1.35rem + 2vw, 3.5rem);
    line-height: 0.95;
}

.stream-auth-hero p,
.stream-copy-hero p,
.stream-plan-hero p,
.stream-payment-hero p,
.stream-profile-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.stream-feature-list,
.stream-inline-list,
.stream-meta-list,
.stream-plan-feature-list,
.stream-copy-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 1.3rem 0 0;
    list-style: none;
}

.stream-feature-list li,
.stream-plan-feature-list li,
.stream-copy-list li {
    position: relative;
    padding-left: 1.45rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.stream-feature-list li::before,
.stream-plan-feature-list li::before,
.stream-copy-list li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--stream-accent);
    box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.12);
}

.stream-auth-highlights,
.stream-copy-highlight-grid,
.stream-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.stream-auth-highlight,
.stream-copy-highlight,
.stream-profile-stat {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-auth-highlight strong,
.stream-copy-highlight strong,
.stream-profile-stat strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.stream-auth-highlight span,
.stream-copy-highlight span,
.stream-profile-stat span {
    color: var(--stream-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.stream-auth-card h2,
.stream-copy-card h2,
.stream-payment-card h3,
.stream-plan-card h3,
.stream-profile-card h3,
.stream-faq-item summary {
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.stream-auth-card__copy,
.stream-copy-card__copy,
.stream-payment-card__copy {
    margin: 0.65rem 0 1.4rem;
    color: var(--stream-muted);
    line-height: 1.7;
}

.stream-form-grid {
    display: grid;
    gap: 1rem;
}

.stream-form-field {
    display: grid;
    gap: 0.45rem;
}

.stream-form-field label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 600;
}

.stream-auth-page .form-control,
.stream-copy-page .form-control,
.stream-profile-page .form-control,
.stream-plan-page .form-control,
.stream-payment-page .form-control,
.stream-auth-page .form-select,
.stream-copy-page .form-select,
.stream-profile-page .form-select,
.stream-plan-page .form-select,
.stream-payment-page .form-select,
.stream-auth-page .input-group-text,
.stream-copy-page .input-group-text,
.stream-profile-page .input-group-text,
.stream-plan-page .input-group-text,
.stream-payment-page .input-group-text {
    min-height: 3.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--stream-text) !important;
    box-shadow: none !important;
}

.stream-auth-page .form-control:focus,
.stream-copy-page .form-control:focus,
.stream-profile-page .form-control:focus,
.stream-plan-page .form-control:focus,
.stream-payment-page .form-control:focus,
.stream-auth-page .form-select:focus,
.stream-copy-page .form-select:focus,
.stream-profile-page .form-select:focus,
.stream-plan-page .form-select:focus,
.stream-payment-page .form-select:focus {
    border-color: rgba(229, 9, 20, 0.38) !important;
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.08) !important;
}

.stream-auth-page .form-control::placeholder,
.stream-copy-page .form-control::placeholder,
.stream-profile-page .form-control::placeholder,
.stream-plan-page .form-control::placeholder,
.stream-payment-page .form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.stream-form-row,
.stream-form-actions,
.stream-profile-actions,
.stream-payment-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.stream-form-row {
    justify-content: space-between;
}

.stream-form-note,
.stream-form-links,
.stream-faq-item p,
.stream-copy-body,
.stream-legal-note {
    color: var(--stream-muted);
    line-height: 1.7;
}

.stream-form-links a,
.stream-legal-note a,
.stream-copy-body a {
    color: #fff;
}

.stream-inline-list {
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
}

.stream-inline-list li {
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
}

.stream-alert {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.stream-alert--error {
    border-color: rgba(248, 113, 113, 0.18);
    background: rgba(248, 113, 113, 0.12);
    color: #ffd9d9;
}

.stream-alert--success {
    border-color: rgba(52, 211, 153, 0.18);
    background: rgba(52, 211, 153, 0.12);
    color: #dbfff1;
}

.stream-copy-layout,
.stream-plan-layout,
.stream-payment-layout,
.stream-profile-layout {
    display: grid;
    gap: 1.4rem;
}

.stream-copy-grid,
.stream-plan-grid,
.stream-payment-grid,
.stream-profile-grid {
    display: grid;
    gap: 1.25rem;
}

.stream-copy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stream-plan-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(20rem, 0.85fr);
    align-items: start;
}

.stream-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.stream-plan-card {
    display: grid;
    gap: 1.2rem;
}

.stream-plan-card--featured {
    border-color: rgba(229, 9, 20, 0.34);
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.14), var(--stream-shadow);
}

.stream-plan-badge-row,
.stream-plan-price,
.stream-plan-meta,
.stream-payment-card__top,
.stream-profile-membership__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.stream-badge,
.stream-chip,
.stream-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.1rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.83rem;
    font-weight: 700;
}

.stream-badge--accent,
.stream-status-pill--active {
    background: rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.2);
}

.stream-status-pill--muted {
    background: rgba(148, 163, 184, 0.14);
    border-color: rgba(148, 163, 184, 0.2);
    color: #dfe7f3;
}

.stream-plan-title {
    display: grid;
    gap: 0.4rem;
}

.stream-plan-title p,
.stream-plan-sidecopy,
.stream-payment-copy,
.stream-profile-copy {
    margin: 0;
    color: var(--stream-muted);
    line-height: 1.7;
}

.stream-plan-price strong,
.stream-payment-card__value,
.stream-profile-membership__value {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 1.65rem + 1vw, 3rem);
    line-height: 1;
}

.stream-plan-meta-grid,
.stream-payment-meta-grid,
.stream-profile-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.stream-plan-meta-card,
.stream-payment-meta-card,
.stream-profile-meta-card {
    padding: 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-plan-meta-card span,
.stream-payment-meta-card span,
.stream-profile-meta-card span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--stream-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stream-plan-meta-card strong,
.stream-payment-meta-card strong,
.stream-profile-meta-card strong {
    display: block;
    font-size: 1rem;
}

.stream-side-stack {
    display: grid;
    gap: 1.25rem;
}

.stream-copy-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.stream-copy-card__icon,
.stream-profile-avatar {
    width: 4rem;
    height: 4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.94), rgba(255, 77, 90, 0.88));
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: 0 18px 35px rgba(229, 9, 20, 0.2);
}

.stream-copy-body > * + *,
.stream-legal-content > * + * {
    margin-top: 1rem;
}

.stream-copy-body h2,
.stream-legal-content h2,
.stream-copy-body h3,
.stream-legal-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    margin: 0;
}

.stream-copy-body p,
.stream-copy-body li,
.stream-legal-content p,
.stream-legal-content li {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.stream-copy-body ul,
.stream-legal-content ul {
    margin: 0;
    padding-left: 1.1rem;
}

.stream-faq-list {
    display: grid;
    gap: 1rem;
}

.stream-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
}

.stream-faq-item summary::-webkit-details-marker {
    display: none;
}

.stream-faq-item summary::after {
    content: "\2b";
    font-size: 1.2rem;
    color: var(--stream-muted);
}

.stream-faq-item[open] summary::after {
    content: "\2212";
    color: #fff;
}

.stream-faq-item p {
    margin: 1rem 0 0;
}

.stream-payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.stream-payment-card {
    display: grid;
    gap: 1rem;
}

.stream-payment-card__bank {
    color: var(--stream-muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stream-payment-card__value {
    word-break: break-word;
}

.stream-copy-trigger {
    align-self: start;
}

.stream-profile-grid {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.1fr) minmax(19rem, 0.85fr);
}

.stream-profile-card {
    display: grid;
    gap: 1rem;
}

.stream-profile-identity {
    display: grid;
    justify-items: start;
    gap: 1rem;
}

.stream-profile-identity strong {
    font-size: 1.25rem;
}

.stream-profile-identity span,
.stream-profile-membership p {
    color: var(--stream-muted);
}

.stream-profile-membership {
    display: grid;
    gap: 1rem;
}

.stream-profile-membership__price span {
    color: var(--stream-muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stream-profile-membership__details {
    display: grid;
    gap: 0.75rem;
}

.stream-profile-membership__details div {
    padding: 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-profile-membership__details span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--stream-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1100px) {
    .stream-auth-layout,
    .stream-plan-layout,
    .stream-profile-grid,
    .stream-copy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .stream-auth-highlights,
    .stream-copy-highlight-grid,
    .stream-profile-stats,
    .stream-plan-meta-grid,
    .stream-payment-meta-grid,
    .stream-profile-meta-grid {
        grid-template-columns: 1fr;
    }

    .stream-inline-list {
        grid-auto-flow: row;
        grid-auto-columns: unset;
    }
}

@media (max-width: 640px) {
    .stream-auth-hero,
    .stream-auth-card,
    .stream-copy-card,
    .stream-plan-card,
    .stream-payment-card,
    .stream-profile-card,
    .stream-faq-item {
        padding: 1.1rem;
        border-radius: 1.25rem;
    }

    .stream-form-row,
    .stream-form-actions,
    .stream-profile-actions,
    .stream-plan-badge-row,
    .stream-plan-price,
    .stream-plan-meta,
    .stream-payment-card__top,
    .stream-profile-membership__price {
        flex-direction: column;
        align-items: stretch;
    }
}


.btn-premium{
    background-color: var(--laser-red) !important;
}
