* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --bg: #030711;
    --bg-deep: #01030a;
    --panel: rgba(11, 13, 25, .86);
    --panel-soft: rgba(24, 27, 42, .82);
    --border: rgba(172, 91, 255, .18);
    --text: #f7f3ff;
    --muted: #b9b5c7;
    --accent: #a536ff;
    --accent-2: #6c2cff;
    --accent-soft: rgba(165, 54, 255, .18);
}

body {
    margin: 0;
    min-height: 100vh;
    padding-top: 82px;
    color: var(--text);
    background:
        radial-gradient(circle at 22% 0, rgba(124, 47, 255, .2), transparent 28rem),
        radial-gradient(circle at 88% 12%, rgba(45, 92, 255, .13), transparent 30rem),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: .2px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(280px, 1fr);
    align-items: center;
    gap: 28px;
    height: 82px;
    padding: 0 clamp(18px, 8vw, 260px);
    background: rgba(2, 5, 14, .9);
    border-bottom: 1px solid rgba(150, 86, 255, .08);
    backdrop-filter: blur(12px);
}

.user-sidebar {
    position: fixed;
    top: 82px;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    width: 230px;
    overflow-y: auto;
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    background: rgba(2, 5, 14, .72);
    backdrop-filter: blur(16px);
}

.user-sidebar nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.user-sidebar a {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 0 24px;
    color: rgba(247, 243, 255, .76);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.user-sidebar a.active,
.user-sidebar a:hover {
    color: #fff;
    background: linear-gradient(90deg, rgba(165, 54, 255, .32), rgba(108, 44, 255, .12));
}

.sidebar-menu-block {
    display: grid;
    gap: 6px;
}

.user-submenu {
    display: grid;
    gap: 2px;
    margin: 2px 0 6px;
    padding-left: 14px;
}

.user-submenu a {
    min-height: 34px;
    border-radius: 6px;
    padding: 0 12px 0 24px;
    color: rgba(247, 243, 255, .62);
    font-size: 13px;
    letter-spacing: .02em;
}

.user-submenu a.active,
.user-submenu a:hover {
    color: #fff;
}

.sidebar-store-badges {
    display: grid;
    flex: 0 0 auto;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
}

.store-badge {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 10px;
    padding: 8px 10px;
    color: #fff;
    background: #050505;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .25);
    cursor: default;
    user-select: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.store-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(165, 54, 255, .9);
    box-shadow: 0 10px 24px rgba(108, 44, 255, .3);
}

.store-badge.store-badge-image {
    overflow: hidden;
    border: 0;
    padding: 0;
    background: transparent;
}

.store-badge-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-badge-copy {
    display: grid;
    min-width: 0;
    line-height: 1;
}

.store-badge-copy small {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: .07em;
}

.store-badge-copy strong {
    white-space: nowrap;
    font-size: 20px;
    letter-spacing: -.04em;
}

.google-play-mark {
    position: relative;
    width: 32px;
    height: 38px;
    flex: 0 0 32px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: linear-gradient(145deg, #16d7e5 0 45%, #20d779 45% 100%);
}

.google-play-mark::before,
.google-play-mark::after {
    position: absolute;
    content: '';
}

.google-play-mark::before {
    right: 0;
    width: 55%;
    height: 50%;
    background: #ffd02f;
}

.google-play-mark::after {
    right: 0;
    bottom: 0;
    width: 55%;
    height: 50%;
    background: #ff4057;
}

.apple-mark {
    display: block;
    width: 31px;
    height: 40px;
    flex: 0 0 34px;
    color: #fff;
}

main {
    margin-left: 230px;
}

.site-footer {
    margin-left: 230px;
    margin-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(2, 5, 14, .88);
}

.footer-inner {
    display: grid;
    width: min(1560px, calc(100% - 48px));
    gap: 28px;
    margin: 0 auto;
    padding: 28px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: 8px;
    padding: 0 16px;
    color: rgba(247, 243, 255, .72);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(165, 54, 255, .32), rgba(108, 44, 255, .12));
}

.footer-copy {
    margin: 0;
    color: rgba(247, 243, 255, .58);
    font-size: 14px;
    line-height: 1.6;
}

.age-gate-locked {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    place-items: center;
    padding: 22px;
    background:
        radial-gradient(circle at 50% 18%, rgba(165, 54, 255, .28), transparent 30rem),
        rgba(1, 3, 10, .88);
    backdrop-filter: blur(16px);
}

html.age-gate-required .age-gate {
    display: grid;
}

.age-gate.accepted {
    display: none;
}

.age-gate-panel {
    position: relative;
    display: grid;
    width: min(680px, 100%);
    max-height: calc(100vh - 44px);
    gap: 18px;
    overflow-y: auto;
    border: 1px solid rgba(202, 154, 255, .28);
    border-radius: 8px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(20, 23, 40, .96), rgba(6, 8, 19, .98)),
        var(--panel);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .62), 0 0 42px rgba(165, 54, 255, .18);
}

.age-gate-badge {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 26px rgba(165, 54, 255, .42);
    font-size: 20px;
    font-weight: 900;
}

.age-gate h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.05;
}

.age-gate-copy {
    display: grid;
    gap: 10px;
    color: rgba(247, 243, 255, .78);
    font-size: 15px;
    line-height: 1.58;
}

.age-gate-copy p {
    margin: 0;
}

.age-gate-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 14px;
    color: rgba(247, 243, 255, .9);
    background: rgba(255, 255, 255, .04);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
}

.age-gate-check input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin: 1px 0 0;
    accent-color: var(--accent);
    cursor: pointer;
}

.age-gate-enter {
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    padding: 0 26px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 30px rgba(108, 44, 255, .28);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.age-gate-enter:disabled {
    color: rgba(247, 243, 255, .48);
    background: rgba(255, 255, 255, .09);
    box-shadow: none;
    cursor: not-allowed;
}

.brand,
.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--text);
    font-size: 30px;
    font-weight: 900;
    line-height: .86;
    letter-spacing: 1px;
    text-shadow: none;
}

.brand span:last-child::first-line,
.auth-logo span:last-child::first-line {
    color: var(--text);
}

.site-logo-image {
    display: block;
    width: 190px;
    height: 72px;
    object-fit: contain;
}

.auth-logo .site-logo-image {
    width: 260px;
    height: 108px;
}

.brand-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 0;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 24px rgba(165, 54, 255, .32);
    font-size: 34px;
}

.nav {
    position: static;
    transform: none;
    align-self: stretch;
    display: flex;
    height: 100%;
}

.nav a {
    display: grid;
    min-width: 92px;
    place-items: center;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, .03);
    color: rgba(247, 243, 255, .82);
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.nav a:hover,
.nav a.active {
    color: #fff;
    background: linear-gradient(180deg, rgba(165, 54, 255, .22), rgba(108, 44, 255, .08));
}

.nav a.active {
    border-bottom: 3px solid var(--accent);
}

.actions {
    min-width: 0;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
}

.top-search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-search input {
    width: 0;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0;
    color: var(--text);
    background: rgba(255, 255, 255, .08);
    opacity: 0;
    outline: none;
    transition: width .2s ease, opacity .2s ease, padding .2s ease, border-color .2s ease;
}

.top-search.open input,
.top-search:focus-within input {
    width: min(260px, 34vw);
    border-color: rgba(165, 54, 255, .44);
    padding: 0 54px 0 16px;
    opacity: 1;
}

.top-search .circle-btn {
    position: relative;
    z-index: 1;
    flex: 0 0 42px;
    margin-left: -42px;
}

.top-search:not(.open):not(:focus-within) .circle-btn {
    margin-left: 0;
}

.circle-btn,
.user-notification-bell,
.plan-btn,
.login-btn {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 30px;
}

.user-notification-bell {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, .08);
}

.user-notification-bell:hover,
.user-notification-bell.ringing {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.user-bell-icon {
    display: inline-block;
    font-size: 19px;
    line-height: 1;
    transform-origin: 50% 0;
}

.user-notification-bell.ringing .user-bell-icon {
    animation: user-bell-ring .7s ease-in-out 2;
}

.user-bell-count {
    position: absolute;
    top: -6px;
    right: -6px;
    display: grid;
    min-width: 21px;
    height: 21px;
    place-items: center;
    border: 2px solid #050814;
    border-radius: 999px;
    padding: 0 6px;
    color: #fff;
    background: #ff2e70;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.user-bell-count[hidden] {
    display: none;
}

.user-notification-toast {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 80;
    display: grid;
    gap: 5px;
    width: min(360px, calc(100vw - 32px));
    border: 1px solid rgba(165, 54, 255, .42);
    border-radius: 10px;
    padding: 15px 18px;
    color: #fff;
    background: rgba(15, 10, 33, .96);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .38);
    animation: user-toast-in .25s ease both;
}

.user-notification-toast strong {
    font-size: 14px;
    text-transform: uppercase;
}

.user-notification-toast span {
    color: rgba(247, 243, 255, .78);
    line-height: 1.45;
}

.user-notification-toast.hide {
    animation: user-toast-out .25s ease forwards;
}

.plan-btn,
.login-btn {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 18px;
    text-transform: uppercase;
}

.user-profile-menu {
    position: relative;
}

.profile-toggle {
    width: 42px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 0 0 3px rgba(165, 54, 255, .42), 0 12px 28px rgba(108, 44, 255, .22);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    display: grid;
    gap: 6px;
    width: 170px;
    border: 1px solid rgba(165, 54, 255, .55);
    border-radius: 10px;
    padding: 11px 12px;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(165, 54, 255, .14), transparent 42%),
        rgba(8, 10, 22, .98);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .46);
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.user-profile-menu:hover .profile-dropdown,
.user-profile-menu:focus-within .profile-dropdown,
.profile-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown[hidden] {
    display: grid;
}

.profile-dropdown strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}

.profile-dropdown span {
    overflow-wrap: anywhere;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
}

.profile-dropdown form {
    margin: 6px 0 0;
}

.profile-dropdown .profile-renew-plan {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    border: 1px solid rgba(255, 204, 57, .72);
    border-radius: 7px;
    color: #171008;
    background: linear-gradient(135deg, #ffe27a, #ffb51b);
    box-shadow: 0 8px 20px rgba(255, 181, 27, .2);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.profile-dropdown .profile-renew-plan:hover,
.profile-dropdown .profile-renew-plan:focus-visible {
    filter: brightness(1.08);
}

.profile-dropdown button {
    width: 100%;
    min-height: 32px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.diamond-icon {
    display: inline-block;
    width: 1.35em;
    height: 1.15em;
    object-fit: contain;
    vertical-align: -0.18em;
    filter: drop-shadow(0 0 8px rgba(255, 208, 70, .58)) drop-shadow(0 2px 5px rgba(70, 38, 0, .45));
}

.premium-badge .diamond-icon {
    width: 28px;
    height: 24px;
    vertical-align: middle;
}

.premium-crown-icon {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    background: #000;
    border-radius: 50%;
    filter: drop-shadow(0 2px 5px rgba(255, 20, 114, .45));
}

.flash {
    width: min(1200px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--border);
}

.flash.payment-success {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10020;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(460px, calc(100vw - 32px));
    margin: 0;
    padding: 16px 18px;
    color: #0f5132;
    background: #d1f7df;
    border-color: #34c77b;
    box-shadow: 0 12px 30px rgba(46, 203, 128, .18);
    font-size: 16px;
    font-weight: 800;
    animation: payment-toast-in .28s ease both;
}

.flash.payment-success.hide {
    animation: payment-toast-out .28s ease forwards;
}

.flash-icon {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #2ecb80;
    font-size: 22px;
    font-weight: 900;
}

.flash.error {
    color: #ff6685;
    border-color: rgba(255, 102, 133, .45);
}

@keyframes payment-toast-in {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes payment-toast-out {
    to {
        opacity: 0;
        transform: translateX(28px);
        visibility: hidden;
    }
}

@media (max-width: 600px) {
    .flash.payment-success {
        top: 12px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

.hero-shell {
    width: min(1560px, calc(100% - 48px));
    margin: 20px auto 8px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    aspect-ratio: 2025 / 759;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.hero-shell::-webkit-scrollbar,
.poster-row::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: end;
    padding: clamp(26px, 5vw, 72px);
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
}

.home-banner-slide {
    display: block;
    padding: 0;
}

.hero-video,
.hero-video-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}

.hero-video-shade {
    z-index: 2;
    background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.28) 48%, rgba(0,0,0,.62) 100%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: min(1560px, calc(100% - 48px));
    margin: 0 auto 24px;
}

.banner-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.banner-dots button.active {
    width: 30px;
    background: var(--accent);
}

.hero-copy,
.detail-copy {
    max-width: 560px;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

.hero-copy h1,
.detail-copy h1 {
    margin-bottom: 12px;
    color: white;
    font-size: clamp(42px, 5vw, 84px);
    line-height: .94;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .8);
}

.detail-title-row {
    display: flex;
    align-items: center;
    gap: 22px;
}

.detail-title-row h1 {
    margin-bottom: 12px;
}

.large-play-btn {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 44px rgba(118, 44, 255, .42);
    isolation: isolate;
}

.large-play-btn span {
    margin-left: 5px;
    font-size: 30px;
    line-height: 1;
}

.large-play-btn::before,
.large-play-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -1;
    border: 2px solid rgba(165, 54, 255, .65);
    border-radius: inherit;
    animation: large-play-wave 1.8s ease-out infinite;
}

.large-play-btn::after {
    animation-delay: .9s;
}

@keyframes large-play-wave {
    from {
        opacity: .85;
        transform: scale(.72);
    }
    to {
        opacity: 0;
        transform: scale(1.55);
    }
}

.hero-copy p,
.detail-copy p,
.section-head p,
.watch-page p {
    color: var(--muted);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hero-buttons,
.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.watch-btn,
.buy-btn,
.wide-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 6px;
    padding: 0 18px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.watch-btn,
.wide-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 30px rgba(118, 44, 255, .28);
}

.buy-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .08);
}

.play-wave {
    position: relative;
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    isolation: isolate;
}

.play-wave::before,
.play-wave::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: inherit;
    animation: play-wave 1.6s ease-out infinite;
}

.play-wave::after {
    animation-delay: .8s;
}

@keyframes play-wave {
    from {
        opacity: .8;
        transform: scale(.55);
    }
    to {
        opacity: 0;
        transform: scale(1.65);
    }
}

@keyframes user-bell-ring {
    0%,
    100% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(18deg);
    }
    30% {
        transform: rotate(-16deg);
    }
    45% {
        transform: rotate(14deg);
    }
    60% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(6deg);
    }
}

@keyframes user-toast-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes user-toast-out {
    to {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
}

.row-section,
.page-wrap,
.watch-page {
    width: min(1560px, calc(100% - 48px));
    margin: 22px auto;
}

.watch-page {
    width: calc(100% - 48px);
    max-width: none;
}

.watch-page h1 {
    margin: 0 0 10px;
    padding-top: 18px;
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.12;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.section-head.centered {
    display: block;
    text-align: center;
}

.section-head h1,
.section-head h2 {
    color: var(--text);
}

.section-head a {
    color: var(--accent);
    font-size: 18px;
}

.poster-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 120px) / 6);
    gap: 24px;
    overflow-x: auto;
    padding: 4px 0 16px;
}

.grid-list,
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 24px;
}

.static-page-shell {
    padding: 30px 0 54px;
}

.static-page-shell .section-head h1 {
    margin: 10px 0 0;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1;
}

.static-page-content {
    width: min(920px, 100%);
    margin: 28px auto 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: clamp(22px, 4vw, 42px);
    color: rgba(247, 243, 255, .86);
    background: rgba(11, 13, 25, .72);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .26);
    font-size: 17px;
    line-height: 1.85;
    white-space: normal;
}

.static-page-content p {
    color: rgba(247, 243, 255, .86);
}

.poster-card-wrap {
    position: relative;
    width: 100%;
}

.poster-card {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
    transition: border-color .2s ease, transform .2s ease;
}

.poster-card img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform .22s ease;
}

.poster-card:hover img {
    transform: scale(1.04);
}

.poster-card:hover {
    border-color: rgba(165, 54, 255, .52);
    transform: translateY(-2px);
}

.poster-card-title {
    display: block;
    min-height: 54px;
    padding: 12px 12px 14px;
    color: rgba(247, 243, 255, .88);
    background: rgba(10, 12, 24, .96);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    transition: color .2s ease, background .2s ease;
}

.poster-card:hover .poster-card-title {
    color: #fff;
    background: linear-gradient(135deg, rgba(165, 54, 255, .92), rgba(108, 44, 255, .92));
}

.favorite-form {
    margin: 0;
}

.poster-card-wrap .heart-btn {
    position: absolute;
    z-index: 4;
    top: 10px;
    right: 10px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(10, 10, 18, .72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(8px);
}

.poster-card-wrap .heart-btn:hover,
.poster-card-wrap .heart-btn.active {
    background: linear-gradient(135deg, #ff2e70, #9d35ff);
}

.empty-list {
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 28px;
    color: var(--muted);
    background: rgba(255, 255, 255, .04);
    font-size: 18px;
}

.premium-badge,
.popular-tag {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: grid;
    min-width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
}

.premium-badge {
    background: #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: clamp(26px, 7vw, 90px);
    background-size: cover;
    background-position: center;
}

.detail-poster img {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
}

.content-detail-page {
    width: min(1180px, calc(100% - 40px));
    margin: 26px auto 50px;
}

.content-detail-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: #090019;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.content-detail-artwork {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 24px;
    background: #080611;
}

.content-detail-artwork > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.content-detail-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .82) 100%);
}

.content-detail-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 50%;
    color: #e51138;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .38);
    text-decoration: none;
    transform: translate(-50%, -50%);
}

.content-detail-play span {
    margin-left: 6px;
    font-size: 38px;
}

.content-detail-views {
    position: absolute;
    z-index: 2;
    bottom: 84px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px #000;
}

.content-detail-views svg { width: 25px; height: 25px; }

.content-detail-actions {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 24px;
    display: flex;
    gap: 16px;
}

.content-detail-actions form { margin: 0; }

.detail-watchlist-btn,
.detail-share-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 7px;
    padding: 10px 20px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.detail-watchlist-btn { background: #08a51d; }
.detail-watchlist-btn.active { background: #087f18; }
.detail-watchlist-btn span { font-size: 29px; line-height: .5; }
.detail-share-btn { background: #078cb4; }

.content-detail-info {
    padding: 34px 28px 40px;
}

.content-detail-info h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    text-transform: uppercase;
}

.content-detail-meta {
    margin: 0 0 20px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.content-detail-meta span,
.content-detail-extra span { margin: 0 7px; color: rgba(255,255,255,.55); }
.content-detail-description { max-width: 850px; color: #cbc7d4; font-size: 17px; line-height: 1.65; }
.content-detail-extra { margin: 18px 0 0; color: #b9b4c3; font-size: 17px; }
.content-detail-extra strong { color: #fff; }

@media (max-width: 700px) {
    .content-detail-page {
        width: 100%;
        margin: 0 auto 34px;
    }

    .content-detail-card {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .content-detail-artwork {
        width: calc(100% - 24px);
        margin: 12px;
        aspect-ratio: 16 / 9;
        min-height: 0;
        border-radius: 22px;
    }

    .content-detail-artwork > img { min-height: 0; }

    .content-detail-artwork > img { object-position: center; }

    .content-detail-play {
        top: 25px;
        right: 22px;
        left: auto;
        width: 58px;
        height: 58px;
        transform: none;
    }
    .content-detail-play span {
        font-size: 23px;
    }

    .content-detail-play span { font-size: 29px; }
    .content-detail-views { bottom: 78px; left: 20px; font-size: 17px; }
    .content-detail-views svg { width: 22px; height: 22px; }
    .content-detail-actions { right: 20px; bottom: 18px; left: 20px; gap: 12px; }

    .detail-watchlist-btn,
    .detail-share-btn {
        min-height: 36px;
        padding: 6px 10px;
        font-size: 12px;
        gap: 7px;
    }
    .detail-watchlist-btn span {
        font-size: 23px;
    }

    .detail-watchlist-btn {
        background: #078cb4;
    }

    .detail-watchlist-btn.active {
        background: #06718f;
    }

    .detail-share-btn {
        background: #e91e63;
    }

    .content-detail-info { padding: 34px 20px 38px; }
    .content-detail-info h1 { font-size: 27px; }
    .content-detail-meta { font-size: 18px; }
    .content-detail-description,
    .content-detail-extra { font-size: 15px; }
}

.meta {
    margin: 18px 0 24px;
}

.meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.meta .view-count-badge {
    border-color: rgba(164, 98, 255, .5);
    color: #fff;
}

.view-count-badge svg {
    width: 19px;
    height: 19px;
    color: #b57aff;
}

.auth-screen {
    min-height: calc(100vh - 82px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 16px 48px;
    background:
        linear-gradient(rgba(3, 7, 17, .86), rgba(1, 3, 10, .94)),
        url("../images/branding/ott-login-background.png") center / cover;
}

.auth-only main > .flash {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 100;
    width: min(520px, calc(100% - 28px));
    margin: 0;
    transform: translateX(-50%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.auth-logo {
    margin-bottom: 16px;
}

.auth-card {
    width: min(620px, 100%);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(7, 9, 19, .9);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.signup-card {
    margin-top: 40px;
}

.auth-card h1 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 38px;
}

.underline {
    width: 90px;
    height: 8px;
    margin-bottom: 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.login-mode-heading {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 22px;
    font-weight: 800;
}

.auth-form {
    display: grid;
    gap: 20px;
}

.auth-form.compact {
    margin-top: 22px;
}

.auth-form input {
    width: 100%;
    min-height: 62px;
    border: 2px solid rgba(165, 54, 255, .24);
    border-radius: 8px;
    padding: 0 20px;
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    font-size: 21px;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--accent);
}

.otp-input-action {
    position: relative;
}

.auth-form .otp-input-action input {
    padding-right: 175px;
}

.auth-form .otp-input-action button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: auto;
    min-width: 125px;
    min-height: 48px;
    border: 0;
    border-radius: 7px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.auth-form button,
.wide-btn {
    width: 100%;
    min-height: 60px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.auth-form small {
    color: #ff6685;
    font-family: Arial, sans-serif;
}

.auth-form button:disabled {
    cursor: not-allowed;
    opacity: .72;
}

@media (max-width: 580px) {
    .auth-form .otp-input-action input {
        padding-right: 138px;
        font-size: 15px;
    }

    .auth-form .otp-input-action button {
        top: 7px;
        right: 7px;
        min-width: 108px;
        min-height: 44px;
        padding: 0 10px;
        font-size: 11px;
    }
}

/* Reference-matched compact mobile home screen. */
@media (max-width: 580px) {
    .home-page {
        background: #02050e;
    }

    .home-page .hero-shell {
        width: calc(100% - 32px);
        margin: 10px 16px 7px;
        aspect-ratio: 16 / 9;
        border-radius: 13px;
    }

    .home-page .hero-slide,
    .home-page .hero-video {
        border-radius: 13px;
    }

    .home-page .banner-dots {
        width: auto;
        margin: -28px auto 18px;
    }

    .home-page .banner-dots button {
        width: 18px;
        height: 5px;
    }

    .home-page .banner-dots button.active {
        width: 20px;
    }

    .home-page .platform-benefits {
        width: calc(100% - 32px);
        min-height: 58px;
        margin: 8px 16px 22px;
        border-radius: 11px;
    }

    .home-page .benefit-item {
        min-height: 58px;
        gap: 5px;
        padding: 6px 5px;
    }

    .home-page .row-section {
        width: calc(100% - 32px);
        margin: 0 16px 31px;
    }

    .home-page .section-head {
        min-height: 31px;
        align-items: center;
    }

    .home-page .section-head h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.15;
    }

    .home-page .section-head a {
        font-size: 13px;
    }

    .home-page .poster-row {
        grid-auto-columns: calc((100% - 16px) / 3);
        gap: 8px !important;
        padding: 3px 0 0;
    }

    .home-page .poster-row .poster-card {
        border-radius: 9px;
    }

    .home-page .poster-row .poster-card img {
        aspect-ratio: 3 / 4;
    }

    .home-page .poster-row .poster-card-title {
        display: grid;
        min-height: 38px;
        place-items: center;
        padding: 6px 4px;
        overflow: hidden;
        font-size: 10px;
        line-height: 1.15;
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.auth-ajax-message {
    margin: 16px 0 0;
    border: 1px solid rgba(165, 54, 255, .5);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text);
    background: rgba(165, 54, 255, .12);
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.auth-ajax-message[data-type="success"] {
    border-color: rgba(46, 204, 113, .55);
    background: rgba(46, 204, 113, .14);
}

.auth-ajax-message[data-type="error"] {
    border-color: rgba(255, 102, 133, .65);
    color: #ff7a96;
    background: rgba(255, 102, 133, .12);
}

.auth-hint {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.otp-debug-box {
    margin: 18px 0 0;
    border: 1px solid rgba(165, 54, 255, .55);
    border-radius: 8px;
    padding: 16px 18px;
    color: var(--text);
    background: rgba(165, 54, 255, .14);
    font-size: 22px;
    text-align: center;
}

.otp-debug-box strong {
    color: #fff;
    letter-spacing: 4px;
}

.text-link {
    display: block;
    margin: 42px auto 28px;
    border: 0;
    color: var(--accent);
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.signup-line {
    margin: 0;
    text-align: center;
    color: var(--muted);
    font-size: 16px;
}

.signup-line a {
    color: var(--accent);
}

.plans-grid {
    width: min(100%, 1180px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    grid-auto-rows: 1fr;
    gap: 18px;
    margin: 28px auto 0;
}

.plan-card {
    position: relative;
    display: flex;
    height: 420px;
    min-height: 0;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
    will-change: transform;
}

.plan-card:hover,
.plan-card:focus-within {
    transform: translateY(-12px);
    border-color: rgba(165, 54, 255, .8);
    background: rgba(14, 16, 31, .94);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .42), 0 0 0 1px rgba(165, 54, 255, .22);
}

.plan-card h2 {
    padding-right: 96px;
    min-height: 44px;
    margin: 0;
    line-height: 1.15;
}

.plan-card.current-plan {
    border-color: rgba(54, 211, 153, .8);
    box-shadow: 0 0 0 1px rgba(54, 211, 153, .18), 0 20px 40px rgba(0, 0, 0, .35);
}

.plan-card.expired-plan {
    border-color: rgba(255, 92, 92, .75);
}

.plan-status {
    display: grid;
    gap: 2px;
    margin: 0 0 7px;
    border: 1px solid currentColor;
    border-radius: 7px;
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.25;
}

.plan-status strong {
    font-size: 12px;
    text-transform: uppercase;
}

.plan-status.active {
    color: #67e8a5;
    background: rgba(54, 211, 153, .1);
}

.plan-status.expiring {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.plan-status.expired {
    color: #ff8585;
    background: rgba(255, 82, 82, .1);
}

.plan-card .plan-current-button {
    color: var(--accent);
    background: #fff;
    box-shadow: 0 14px 30px rgba(255, 255, 255, .12);
    cursor: default;
}

.plan-card.expired-plan .wide-btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.15;
    white-space: nowrap;
}

.plans-grid .plan-card h2 {
    font-size: 25px;
}

.plans-grid .plan-card .discount-badge {
    font-size: 10px;
}

.plans-grid .plan-card .old-price {
    font-size: 16px;
}

.plans-grid .plan-card .price {
    font-size: 32px;
}

.plans-grid .plan-card > p {
    font-size: 15px;
}

.plans-grid .plan-card ul {
    font-size: 15px;
}

.plans-grid .plan-card .wide-btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.15;
}

.discount-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 1px solid rgba(165, 54, 255, .45);
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(165, 54, 255, .22);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.old-price {
    margin: 4px 0 -2px;
    color: var(--muted);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.plan-card.popular {
    border-color: rgba(165, 54, 255, .7);
    box-shadow: 0 0 0 1px rgba(165, 54, 255, .2), 0 20px 40px rgba(0, 0, 0, .35);
}

.popular-tag {
    left: 20px;
    right: auto;
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 8px 14px;
}

.price {
    margin: 6px 0;
    color: var(--accent);
    font-size: 40px;
    line-height: 1;
}

.plan-card p {
    margin: 0 0 8px;
}

.plan-card ul {
    flex: 1 1 auto;
    min-height: 0;
    margin: 6px 0 12px;
    overflow-y: auto;
    padding-left: 22px;
    padding-right: 6px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    line-height: 1.35;
    scrollbar-gutter: stable;
}

.plan-card .wide-btn {
    min-height: 50px;
    margin-top: auto;
    font-size: 22px;
    line-height: 1.05;
}

/* Compact subscription cards */
.plans-page {
    padding-top: 34px;
}

.plans-page .plans-heading {
    display: block;
    width: min(100%, 1180px);
    margin: 0 auto;
    text-align: left;
}

.plans-page .plans-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: normal;
    text-transform: none;
}

.plans-page .plans-heading h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.plans-page .plans-heading p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.plans-page .plans-grid {
    gap: 22px;
    margin-top: 30px;
}

.plans-page .plan-card {
    height: 120px;
    padding: 12px 13px 9px;
    border-color: rgba(165, 54, 255, .62);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(18, 19, 34, .98), rgba(10, 11, 22, .98));
    box-shadow: inset 0 0 32px rgba(165, 54, 255, .035);
}

.plans-page .plan-card:hover,
.plans-page .plan-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 102, .9);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .38), 0 0 24px rgba(165, 54, 255, .13);
}

.plans-page .plan-card h2 {
    min-height: auto;
    margin: 4px 0 0;
    padding-right: 105px;
    font-size: 17px;
}

.plans-page .plan-card .discount-badge {
    position: static;
    order: -1;
    align-self: flex-start;
    border: 0;
    padding: 0;
    color: var(--accent);
    background: transparent;
    font-size: 8px;
    letter-spacing: .18em;
}

.plans-page .plan-card .old-price {
    position: absolute;
    top: 13px;
    right: 14px;
    margin: 0;
    font-size: 10px;
    text-align: right;
}

.plans-page .plan-card .price {
    position: absolute;
    top: 11px;
    right: 14px;
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    text-align: right;
}

.plans-page .plan-card.has-discount .price {
    top: 28px;
}

.plans-page .plan-card > p {
    position: absolute;
    top: 40px;
    right: 14px;
    margin-bottom: 4px;
    padding-right: 0;
    font-size: 12px;
    text-align: right;
}

.plans-page .plan-card.has-discount > p {
    top: 57px;
}

.plans-page .plan-card.current-plan .plan-status {
    width: fit-content;
    max-width: calc(100% - 112px);
    padding: 5px 7px;
    overflow-wrap: anywhere;
    font-size: 9px;
    line-height: 1.2;
}

.plans-page .plan-card ul {
    display: none;
}

.plans-page .plan-card .wide-btn {
    min-height: 27px;
    border-radius: 999px;
    font-size: 11px;
}

.plans-page .popular-tag {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: auto;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 6px 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #a536ff);
    box-shadow: 0 8px 24px rgba(165, 54, 255, .3);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .plans-page {
        padding-top: 22px;
    }

    .plans-page .plans-heading p {
        font-size: 15px;
    }

    .plans-page .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plans-page .plan-card {
        height: 120px;
        padding: 12px 13px 9px;
    }
}

.checkout-page {
    width: min(1100px, calc(100% - 28px));
    margin: 18px auto 34px;
    color: #222;
    font-family: Arial, sans-serif;
}

.payment-thank-you-page {
    display: grid;
    min-height: calc(100vh - 150px);
    place-items: center;
    padding: 36px 16px 60px;
}

.payment-thank-you-card {
    width: min(560px, 100%);
    border: 1px solid rgba(165, 54, 255, .65);
    border-radius: 26px;
    padding: 38px;
    background: linear-gradient(145deg, rgba(17, 18, 34, .98), rgba(7, 8, 18, .98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, .48), 0 0 35px rgba(165, 54, 255, .1);
    text-align: center;
}

.payment-success-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #f20b69, #a536ff);
    box-shadow: 0 14px 32px rgba(242, 11, 105, .28);
    font-size: 38px;
    font-weight: 900;
}

.payment-success-label {
    color: #ff2a83;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.payment-thank-you-card h1 {
    margin: 8px 0;
    font-size: clamp(34px, 6vw, 52px);
}

.payment-thank-you-card > p {
    max-width: 430px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.payment-success-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.payment-success-details div {
    display: grid;
    gap: 5px;
    padding: 16px 10px;
}

.payment-success-details div + div {
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.payment-success-details span,
.payment-reference {
    color: var(--muted);
    font-size: 11px;
}

.payment-success-details strong {
    color: #fff;
    font-size: 14px;
}

.payment-reference {
    display: block;
    overflow-wrap: anywhere;
}

.payment-success-actions {
    display: grid;
    gap: 13px;
    margin-top: 22px;
}

.payment-success-actions .wide-btn {
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 999px;
    font-size: 16px;
}

.payment-plans-link {
    color: #c792ff;
    font-size: 14px;
}

@media (max-width: 580px) {
    .payment-thank-you-page {
        min-height: calc(100vh - 134px);
        padding: 24px 13px 42px;
    }

    .payment-thank-you-card {
        border-radius: 20px;
        padding: 26px 18px;
    }

    .payment-success-icon {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    .payment-thank-you-card > p {
        font-size: 14px;
    }

    .payment-success-details {
        grid-template-columns: 1fr;
    }

    .payment-success-details div {
        padding: 11px;
    }

    .payment-success-details div + div {
        border-top: 1px solid rgba(255, 255, 255, .08);
        border-left: 0;
    }
}

.checkout-only {
    padding-top: 0;
    background: #eef1f5;
}

.checkout-only .topbar,
.checkout-only .user-sidebar {
    display: none;
}

.live-chat-widget {
    position: fixed;
    right: 22px;
    bottom: 90px;
    z-index: 40;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 600px) {
    .live-chat-widget {
        right: 14px;
        bottom: 76px;
    }

    .watch-page h1 {
        padding-top: 12px;
        font-size: 26px;
    }
}

.live-chat-toggle {
    position: relative;
    display: inline-flex;
    min-width: 92px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 16px 34px rgba(108, 44, 255, .36);
    font-weight: 900;
    cursor: pointer;
}

.live-chat-toggle strong {
    position: absolute;
    top: -6px;
    right: -4px;
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #ff2e55;
    font-size: 11px;
}

.live-chat-toggle strong[hidden] {
    display: none;
}

.live-chat-box {
    position: absolute;
    right: 0;
    bottom: 64px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(360px, calc(100vw - 28px));
    height: 460px;
    overflow: hidden;
    border: 1px solid rgba(165, 54, 255, .42);
    border-radius: 12px;
    background: rgba(8, 10, 20, .98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .62);
}

.live-chat-box[hidden] {
    display: none !important;
}

.live-chat-box header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.live-chat-box header div {
    display: grid;
    gap: 3px;
}

.live-chat-box header span {
    color: var(--muted);
    font-size: 12px;
}

.live-chat-box header button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, .08);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
}

.live-chat-box header button:hover {
    background: rgba(165, 54, 255, .22);
}

.live-chat-messages {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 9px;
    overflow-y: auto;
    padding: 14px;
}

.live-chat-message {
    width: fit-content;
    max-width: 82%;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 9px 10px;
    background: rgba(255, 255, 255, .07);
}

.live-chat-message.from-user {
    align-self: flex-end;
    border-color: rgba(165, 54, 255, .28);
    background: rgba(165, 54, 255, .18);
}

.live-chat-message.from-admin {
    align-self: flex-start;
}

.live-chat-message p {
    margin: 0 0 5px;
    line-height: 1.35;
}

.live-chat-message span,
.live-chat-empty {
    color: var(--muted);
    font-size: 12px;
}

.live-chat-empty {
    margin: auto;
    text-align: center;
}

.live-chat-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.live-chat-form input {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    outline: none;
}

.live-chat-form button {
    border: 0;
    border-radius: 8px;
    padding: 0 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-weight: 900;
    cursor: pointer;
}

.checkout-only main {
    margin-left: 0;
    padding: 0;
}

.checkout-only .checkout-main h1,
.checkout-only .checkout-main h2,
.checkout-only .checkout-main p,
.checkout-only .checkout-main label,
.checkout-only .checkout-main input,
.checkout-only .checkout-main select,
.checkout-only .checkout-main button,
.checkout-only .checkout-order,
.checkout-only .checkout-footer {
    font-family: Arial, sans-serif;
    letter-spacing: 0;
}

.checkout-only .checkout-main h1 {
    font-size: 25px;
    line-height: 1.2;
}

.checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    align-items: start;
    border: 1px solid #cfcfcf;
    background: #fff;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
}

.checkout-main {
    min-height: 680px;
    padding: 28px 86px 22px;
}

.checkout-main h1 {
    margin: 0;
    color: #111;
    text-align: center;
    font-size: 25px;
    line-height: 1.2;
}

.checkout-main > p {
    margin: 7px 0 20px;
    color: #a0a6ad;
    text-align: center;
    line-height: 1.4;
}

.checkout-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 0 auto 18px;
    max-width: 620px;
}

.checkout-method {
    position: relative;
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 10px 9px 9px;
    border: 1px solid #dde4ec;
    border-radius: 8px;
    color: #334155;
    background: linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.checkout-method input {
    position: absolute;
    opacity: 0;
}

.checkout-method:hover,
.checkout-method:has(input:checked) {
    border-color: #2bb7e5;
    background: #fff;
    box-shadow: 0 12px 28px rgba(43, 183, 229, .18);
    transform: translateY(-2px);
}

.checkout-method:has(input:checked)::after {
    content: "✓";
    position: absolute;
    top: 7px;
    right: 7px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 999px;
    color: #fff;
    background: #2ecb80;
    font-size: 12px;
    font-weight: 900;
}

.checkout-method strong {
    color: #202a37;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.checkout-method small {
    color: #8c96a3;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.payment-icon {
    position: relative;
    display: inline-grid;
    width: 58px;
    height: 36px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
    box-shadow: 0 7px 14px rgba(15, 23, 42, .12), inset 0 -10px 18px rgba(0, 0, 0, .12);
}

.upi-mark {
    overflow: hidden;
    background: #fff;
    font-size: 18px;
    box-shadow: 0 7px 14px rgba(15, 23, 42, .12);
}

.upi-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #f28c28 0 43%, transparent 44%),
        linear-gradient(135deg, transparent 50%, #10843d 51% 100%);
}

.upi-mark span,
.upi-mark i {
    position: relative;
    z-index: 1;
}

.upi-mark i {
    width: 0;
    height: 0;
    margin-left: -1px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #fff;
}

.phonepe-mark {
    width: 40px;
    border-radius: 50%;
    background: #5f259f;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 7px 14px rgba(95, 37, 159, .22);
}

.phonepe-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px solid rgba(255, 255, 255, .95);
    border-radius: 50%;
}

.phonepe-mark span {
    position: relative;
    z-index: 1;
    transform: translateY(-1px);
}

.gpay-mark {
    grid-auto-flow: column;
    gap: 5px;
    background: #fff;
    border: 1px solid #d7dce2;
    color: #202124;
    box-shadow: none;
}

.gpay-mark b {
    position: relative;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: #4285f4;
    font-size: 0;
    font-style: normal;
}

.gpay-mark b::after {
    content: "G";
    position: relative;
    z-index: 1;
    color: #4285f4;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.gpay-mark b i {
    position: absolute;
    display: block;
    width: 8px;
    height: 4px;
    border-radius: 99px;
}

.gpay-mark b i:nth-child(1) {
    top: 2px;
    right: 2px;
    background: #ea4335;
}

.gpay-mark b i:nth-child(2) {
    right: 0;
    bottom: 6px;
    background: #fbbc04;
}

.gpay-mark b i:nth-child(3) {
    left: 2px;
    bottom: 2px;
    background: #34a853;
}

.gpay-mark b i:nth-child(4) {
    left: 0;
    top: 7px;
    background: #4285f4;
}

.gpay-mark em {
    color: #202124;
    font-size: 12px;
    font-weight: 900;
    font-style: normal;
}

.paytm-mark {
    grid-auto-flow: column;
    gap: 0;
    background: #fff;
    border: 1px solid #d7dce2;
    color: #00baf2;
    box-shadow: none;
    font-size: 18px;
    text-transform: lowercase;
}

.paytm-mark span {
    color: #00baf2;
}

.paytm-mark b {
    color: #002970;
    font-size: inherit;
}

.card-mark {
    overflow: hidden;
    align-content: center;
    justify-content: start;
    padding: 0 10px;
    font-size: 11px;
    text-transform: uppercase;
}

.card-mark i {
    position: absolute;
    top: 8px;
    left: 9px;
    width: 15px;
    height: 11px;
    border-radius: 3px;
    background: linear-gradient(135deg, #ffe1a1, #c99534);
    box-shadow: inset 0 0 0 1px rgba(92, 55, 7, .18);
}

.card-mark span {
    margin-left: 22px;
}

.debit-mark {
    background: linear-gradient(135deg, #243b7b, #2bb7e5);
}

.credit-mark {
    background: linear-gradient(135deg, #111827, #8b5cf6);
}

.checkout-main label {
    display: block;
    margin: 8px 0 5px;
    color: #2d2d2d;
    font-size: 15px;
}

.checkout-main input,
.checkout-main select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    padding: 8px 14px;
    color: #111827;
    background: #fff;
    font-size: 17px;
}

.payment-fields[hidden] {
    display: none;
}

.payment-fields-upi small {
    display: block;
    margin-top: 6px;
    color: #8c96a3;
    font-size: 12px;
    font-weight: 700;
}

.checkout-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkout-main h2 {
    margin: 14px 0 6px;
    color: #2bb7e5;
    font-size: 18px;
    font-weight: 500;
}

.cvv-field {
    position: relative;
}

.cvv-field input {
    padding-right: 48px;
}

.cvv-field span {
    position: absolute;
    right: 13px;
    top: 50%;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    transform: translateY(-50%);
    border: 2px solid #5fb7f1;
    border-radius: 999px;
    color: #5fb7f1;
    font-weight: 800;
}

.checkout-error {
    display: block;
    color: #d92d20;
}

.place-order-btn {
    width: 100%;
    min-height: 50px;
    margin-top: 24px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background: #2ecb80;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.checkout-back {
    display: block;
    margin: 10px 0 0;
    color: #222;
    text-align: center;
    font-weight: 800;
    text-decoration: underline;
}

.checkout-order {
    min-height: 400px;
    margin: 0 12px 0 0;
    border: 1px solid #cfcfcf;
    border-top: 0;
    background: #fff;
}

.checkout-order-head {
    padding: 22px 22px;
    color: #fff;
    background: #2db3e4;
    font-size: 22px;
    font-weight: 800;
}

.order-body {
    padding: 18px 22px;
    color: #1f2933;
}

.order-product {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 14px;
}

.order-product em {
    grid-column: 1 / -1;
    color: #9aa0a6;
    font-style: normal;
}

.checkout-order dl {
    border-bottom: 1px solid #d6d6d6;
    margin: 18px 0 14px;
    padding-bottom: 12px;
}

.checkout-order dl div,
.order-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.checkout-order dt,
.checkout-order dd {
    margin: 0 0 6px;
}

.checkout-order dd {
    font-weight: 800;
}

.order-total {
    align-items: end;
    font-size: 20px;
}

.checkout-footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 200px 1fr 240px;
    gap: 14px;
    align-items: center;
    border-top: 1px solid #d6d6d6;
    min-height: 56px;
    padding: 10px 22px;
    color: #9aa0a6;
    background: #fff;
}

.nuvei-mark {
    display: flex;
    align-items: end;
    gap: 6px;
}

.nuvei-mark strong {
    color: #3b4a9f;
    font-size: 21px;
    line-height: 1;
}

.nuvei-mark span {
    color: #d91f46;
    font-weight: 800;
}

.checkout-footer em {
    text-align: center;
    font-style: normal;
}

.checkout-footer small {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.checkout-footer b {
    border: 1px solid #c7d2fe;
    border-radius: 3px;
    padding: 3px 6px;
    color: #3154c9;
    background: #fff;
    font-size: 11px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
}

.player-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: min(76vh, calc((100vw - 48px) * 9 / 16));
    max-height: none;
    object-fit: cover;
    border-radius: 22px;
    background: #000;
}

.player-warning {
    border: 1px solid rgba(255, 46, 85, .45);
    border-radius: 10px;
    padding: 18px;
    color: #ffdce3;
    background: rgba(255, 46, 85, .14);
    font-size: 18px;
    line-height: 1.5;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-link {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(165, 54, 255, .35);
    border-radius: 9px;
    padding: 0 12px;
    color: rgba(247, 243, 255, .82);
    background: rgba(11, 13, 25, .9);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

a.pagination-link:hover,
.pagination-link.active {
    border-color: var(--accent);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.pagination-link.disabled {
    border-color: rgba(255, 255, 255, .08);
    color: rgba(247, 243, 255, .3);
    cursor: not-allowed;
}

.pagination-nav {
    min-width: 92px;
}

.pagination-ellipsis {
    display: inline-flex;
    width: 28px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

@media (max-width: 600px) {
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 22px;
    }

    .pagination-pages {
        gap: 5px;
    }

    .pagination-link {
        min-width: 34px;
        height: 36px;
        border-radius: 7px;
        padding: 0 8px;
        font-size: 12px;
    }

    .pagination-nav {
        min-width: 76px;
    }

    .pagination-ellipsis {
        width: 18px;
        height: 36px;
    }
}

@media (min-width: 821px) and (max-width: 1250px) {
    body {
        padding-top: 132px;
    }

    .topbar {
        grid-template-columns: minmax(150px, 1fr) auto;
        grid-template-rows: 76px 48px;
        height: 124px;
        padding: 0 24px;
        gap: 0 20px;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .actions {
        grid-column: 2;
        grid-row: 1;
    }

    .nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 150px));
        justify-content: center;
        width: 100%;
        height: 48px;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .nav a {
        min-width: 0;
        padding: 0 14px;
    }

    .user-sidebar {
        top: 124px;
    }

    .top-search.open input,
    .top-search:focus-within input {
        width: min(240px, 28vw);
    }
}

@media (max-width: 820px) {
    body {
        padding-top: 112px;
    }

    .topbar {
        display: grind;
        left: 0;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        height: 80px;
        padding: 8px 12px 0;
    }

    .user-sidebar {
        display: none;
    }

    main {
        margin-left: 0;
    }

    .site-footer {
        margin-left: 0;
        margin-top: 22px;
    }

    .footer-inner {
        width: calc(100% - 28px);
        gap: 16px;
        padding: 20px 0;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .footer-links a {
        min-height: 32px;
        padding: 0 7px;
        font-size: 9px;
        white-space: nowrap;
    }

    .footer-copy {
        text-align: center;
    }

    .payment-layout,
    .checkout-shell,
    .checkout-two,
    .checkout-footer {
        grid-template-columns: 1fr;
    }

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

    .checkout-main {
        padding: 24px 18px;
    }

    .checkout-order {
        margin: 0;
        border-left: 0;
        border-top: 1px solid #d6d6d6;
    }

    .method-arrow {
        display: none;
    }

    .brand {
        flex: 0 1 auto;
        gap: 10px;
        font-size: 18px;
        line-height: .9;
    }

    .brand .site-logo-image {
        width: 122px;
        height: 46px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 22px;
    }

    .nav {
        position: static;
        transform: none;
        order: 3;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(100%, 600px);
        height: auto;
        margin-inline: auto;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .nav a {
        min-width: 0;
        min-height: 40px;
        padding: 0 8px;
        font-size: 13px;
        font-weight: 800;
    }

    .actions {
        flex: 0 0 auto;
        gap: 6px;
    }

    .actions form {
        margin: 0;
    }

    .circle-btn,
    .user-notification-bell {
        width: 36px;
        height: 36px;
        font-size: 23px;
    }

    .plan-btn,
    .login-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
        font-weight: 800;
    }

    .top-search.open input,
    .top-search:focus-within input {
        width: min(190px, calc(100vw - 28px));
    }

    .hero-shell,
    .row-section,
    .page-wrap,
    .watch-page {
        width: calc(100% - 20px);
        max-width: 100%;
    }

    .section-head {
        display: grid;
        justify-items: start;
    }

    .section-head.centered {
        text-align: center;
    }

    .section-head h1 {
        font-size: 22px;
        line-height: 1;
    }

    .section-head.centered h1 {
        justify-self: center;
        color: var(--accent);
        font-size: 28px;
        text-align: center;
    }

    .section-head p {
        font-size: 17px;
    }

    .section-head.centered p {
        width: min(360px, 92%);
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
        line-height: 1.45;
        text-align: center;
    }

    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 26px;
    }

    .plan-card {
        height: 310px;
        padding: 12px 10px;
    }

    .plan-card h2 {
        min-height: 34px;
        padding-right: 76px;
    }

    .discount-badge {
        top: 12px;
        right: 10px;
        padding: 5px 8px;
        font-size: 10px;
    }

    .old-price {
        font-size: 15px;
    }

    .price {
        margin: 6px 0;
        font-size: 30px;
    }

    .plan-card p {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .plan-card ul {
        margin: 6px 0 10px;
        font-size: 12px;
        line-height: 1.3;
    }

    .hero-slide {
        padding: 24px;
    }

    .poster-row {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow-x: visible;
        padding-bottom: 8px;
    }

    .grid-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }

    .poster-card-title {
        min-height: 38px;
        padding: 7px 8px 8px;
        font-size: 12px;
        line-height: 1.15;
    }

    .poster-card img {
        aspect-ratio: 3 / 4;
    }

    .poster-card-wrap .heart-btn {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
        font-size: 17px;
    }

    .premium-badge,
    .popular-tag {
        top: 6px;
        left: 6px;
        min-width: 28px;
        height: 28px;
    }

    .premium-badge .diamond-icon {
        width: 22px;
        height: 19px;
    }

    .premium-badge .premium-crown-icon {
        width: 27px;
        height: 27px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 28px 16px;
    }

    .detail-title-row {
        gap: 14px;
    }

    .detail-copy h1 {
        max-width: 78vw;
        font-size: 28px;
        line-height: .95;
    }

    .large-play-btn {
        width: 58px;
        height: 58px;
    }

    .large-play-btn span {
        font-size: 22px;
    }

    .detail-poster {
        justify-self: center;
        max-width: 240px;
    }

    .auth-form input,
    .auth-form button,
    .wide-btn {
        min-height: 58px;
        font-size: 20px;
    }

    .plan-card .wide-btn {
        min-height: 42px;
        padding: 0 8px;
        font-size: 15px;
        line-height: 1;
        white-space: nowrap;
    }

    .auth-card {
        border-radius: 24px;
    }

    .text-link {
        font-size: 22px;
    }

    .signup-line {
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    body {
        padding-top: 106px;
    }

    .age-gate {
        padding: 12px;
    }

    .age-gate-panel {
        max-height: calc(100vh - 24px);
        gap: 14px;
        padding: 20px;
    }

    .age-gate-badge {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .age-gate h2 {
        font-size: 24px;
    }

    .age-gate-copy {
        font-size: 13px;
        line-height: 1.5;
    }

    .age-gate-check {
        padding: 12px;
        font-size: 12px;
    }

    .age-gate-enter {
        min-height: 46px;
        font-size: 14px;
    }

    .topbar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        padding: 10px;
    }

    .brand {
        grid-column: 1;
        align-self: center;
        justify-self: start;
        margin-left: 6px;
        gap: 6px;
        font-size: 11px;
        line-height: .88;
    }

    .brand-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        font-size: 16px;
    }

    .actions {
        grid-column: 2;
        display: grid;
        grid-template-columns: minmax(86px, 1fr) 28px 34px auto;
        width: auto;
        gap: 5px;
        align-items: center;
        justify-self: end;
        justify-content: end;
        margin-top: 0;
        max-width: calc(100vw - 88px);
    }

    .nav {
        grid-column: 1 / -1;
    }

    .circle-btn,
    .user-notification-bell,
    .plan-btn,
    .login-btn,
    .profile-toggle {
        min-height: 30px;
        width: 100%;
        min-width: 0;
    }

    .login-btn {
        width: auto;
        min-width: 70px;
        padding: 0 10px;
        font-size: 12px;
    }

    .profile-toggle {
        width: 30px;
        min-width: 30px;
        padding: 0;
        border-radius: 50%;
    }

    .profile-dropdown {
        width: min(170px, calc(100vw - 24px));
    }

    .top-search {
        width: 100%;
        min-width: 86px;
        max-width: 150px;
        transition: width .2s ease;
    }

    .top-search.open,
    .top-search:focus-within,
    .top-search:has(input:not(:placeholder-shown)) {
        max-width: 150px;
    }

    .top-search input,
    .top-search.open input,
    .top-search:focus-within input {
        width: 100%;
        min-height: 28px;
        border-color: rgba(165, 54, 255, .34);
        padding: 0 28px 0 8px;
        opacity: 1;
        font-size: 10px;
    }

    .top-search .circle-btn,
    .top-search:not(.open):not(:focus-within) .circle-btn {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        margin-left: -28px;
        font-size: 16px;
    }

    .hero-shell,
    .row-section,
    .page-wrap,
    .watch-page {
        width: calc(100% - 20px);
    }

    .hero-shell {
        margin-top: 14px;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }

    .home-banner-slide {
        background-size: cover;
        background-position: center;
    }

    .banner-dots {
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }

    .section-head h1,
    .section-head h2 {
        font-size: 12px;
    }

    .section-head a {
        font-size: 18px;
    }

    .poster-row {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow-x: visible;
        padding-bottom: 14px;
    }

    .grid-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
    }

    .plan-card {
        display: flex;
        height: 220px;
        min-height: 0;
        flex-direction: column;
        padding: 6px;
        border-radius: 8px;
    }

    .plan-card h2 {
        min-height: 26px;
        margin-bottom: 4px;
        padding-right: 54px;
        font-size: 13px;
        line-height: 1.1;
    }

    .discount-badge {
        top: 6px;
        right: 6px;
        padding: 4px 5px;
        font-size: 8px;
    }

    .old-price {
        margin: 2px 0 -1px;
        font-size: 10px;
    }

    .price {
        margin: 4px 0;
        font-size: 20px;
        line-height: 1;
    }

    .plan-card p {
        margin-bottom: 4px;
        font-size: 10px;
        line-height: 1.25;
    }

    .plan-card ul {
        min-height: 0;
        margin: 0 0 5px;
        overflow-y: auto;
        padding-left: 12px;
        font-size: 9px;
        line-height: 1.2;
    }

    .plan-card .wide-btn {
        margin-top: auto;
        min-height: 32px;
        padding: 0 6px;
        font-size: 11px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .popular-tag {
        top: -12px;
        left: 6px;
        min-width: 0;
        height: auto;
        padding: 5px 8px;
        font-size: 9px;
        line-height: 1;
        white-space: nowrap;
    }

    .poster-card {
        border-radius: 8px;
    }

    .poster-card-title {
        min-height: 38px;
        padding: 7px 6px 8px;
        font-size: 11px;
        line-height: 1.15;
    }

    .poster-card-wrap .heart-btn {
        top: 6px;
        right: 6px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    .premium-badge {
        top: 6px;
        left: 6px;
        min-width: 26px;
        height: 26px;
    }

    .premium-badge .diamond-icon {
        width: 20px;
        height: 17px;
    }

    .premium-badge .premium-crown-icon {
        width: 25px;
        height: 25px;
    }

    .checkout-methods {
        grid-template-columns: 1fr;
    }
}

/* Rush TV cinematic theme */
:root {
    --bg: #02050e;
    --bg-deep: #01030a;
    --panel: #0b0f1b;
    --panel-soft: #101522;
    --border: rgba(255, 255, 255, .09);
    --text: #f8f8fb;
    --muted: #9ea2af;
    --accent: #f20b69;
    --accent-2: #aa0648;
    --accent-soft: rgba(242, 11, 105, .16);
}

body {
    padding-top: 88px;
    background: radial-gradient(circle at 72% -20%, rgba(242, 11, 105, .10), transparent 32rem), #02050e;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.topbar {
    left: 260px;
    grid-template-columns: 1fr;
    height: 88px;
    padding: 0 28px;
    background: rgba(2, 5, 14, .92);
    border-bottom-color: rgba(255,255,255,.04);
}

.brand {
    position: static;
    justify-content: center;
    width: 100%;
    height: 100px;
    flex: 0 0 100px;
}

.site-logo-image { width: 185px; height: 88px; }

.actions { width: 100%; justify-content: flex-end; }
.mobile-brand,
.mobile-nav-toggle,
.mobile-nav-overlay,
.mobile-quick-nav { display: none; }
.top-search { margin-right: auto; }
.top-search input,
.top-search.open input,
.top-search:focus-within input {
    width: min(520px, 40vw);
    min-height: 50px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    padding: 0 56px 0 22px;
    color: #fff;
    background: #080c17;
    opacity: 1;
}
.top-search input::placeholder { color: #9ca0aa; }
.top-search .circle-btn { background: transparent; font-size: 28px; }

.plan-btn {
    width: 52px;
    height: 52px;
    min-height: 52px;
    overflow: hidden;
    border-radius: 50%;
    padding: 0;
    background: #1b1015;
}
.plan-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-notification-bell { background: transparent; }
.user-bell-icon { filter: grayscale(1) brightness(2); }

.profile-toggle {
    width: auto;
    min-width: 58px;
    gap: 10px;
    border: 0;
    padding: 0 8px 0 0;
    background: transparent;
    box-shadow: none;
    text-transform: none;
}
.profile-avatar {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #0c101a;
    background: linear-gradient(145deg, #fff, #7d8798);
}
.profile-avatar::before {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: '';
    background: currentColor;
    transform: translateX(-50%);
}
.profile-avatar::after {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 23px;
    height: 13px;
    border-radius: 13px 13px 7px 7px;
    content: '';
    background: currentColor;
    transform: translateX(-50%);
}
.profile-greeting { white-space: nowrap; font-weight: 400; }

.user-sidebar {
    top: 0;
    width: 260px;
    padding: 8px 20px 28px;
    background: #02050e;
    border-right-color: rgba(255,255,255,.06);
}
.sidebar-brand { margin-bottom: 10px; padding: 0 !important; }
.user-sidebar nav { gap: 7px; }
.user-sidebar a {
    min-height: 50px;
    gap: 15px;
    border-radius: 9px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
}
.user-sidebar a.active,
.user-sidebar a:hover {
    background: linear-gradient(90deg, rgba(242,11,105,.52), rgba(242,11,105,.13));
}
.side-icon { display: inline-grid; width: 22px; place-items: center; color: #d5d7dc; font-size: 22px; }
.user-submenu { gap: 5px; margin: 3px 0 10px; padding-left: 0; }
.user-submenu a { min-height: 44px; padding-left: 20px; font-size: 15px; }
.user-submenu a.active { background: rgba(242,11,105,.12); }
.sidebar-store-badges { display: none; }

main, .site-footer { margin-left: 260px; }
.hero-shell {
    width: calc(100% - 40px);
    max-width: 1500px;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    aspect-ratio: 3.05 / 1;
}
.hero-slide {
    align-items: center;
    padding: clamp(28px, 5vw, 68px);
    background-position: center;
}
.hero-copy { max-width: 520px; }
.hero-copy h1 { font-size: clamp(36px, 4.5vw, 70px); line-height: .98; text-transform: uppercase; }
.hero-copy p { max-width: 460px; color: #e5e5e8; line-height: 1.55; }
.watch-btn, .buy-btn { border-radius: 7px !important; }
.watch-btn { background: linear-gradient(135deg, #f52377, #bb084f) !important; }
.banner-dots { position: relative; z-index: 3; width: auto; margin: -32px auto 24px; }
.banner-dots button { width: 18px; height: 6px; }
.banner-dots button.active { width: 20px; background: #ff1972; }

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: calc(100% - 40px);
    max-width: 1500px;
    margin: 14px auto 22px;
}
.quick-links > a {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 12px 16px;
    background: linear-gradient(145deg, #111625, #090d18);
    transition: transform .2s ease, border-color .2s ease;
}
.quick-links > a:hover { transform: translateY(-4px); border-color: rgba(242,11,105,.5); }
.quick-icon { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 50%; color: #ff1472; background: rgba(242,11,105,.08); font-size: 23px; }
.quick-links a > span:last-child { display: grid; gap: 3px; }
.quick-links strong { font-size: 17px; line-height: 1.1; }
.quick-links small { color: #a8abb4; font-size: 11px; }
.quick-links b { color: #ff1472; font-size: 11px; }

.platform-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: calc(100% - 40px);
    max-width: 1500px;
    margin: 12px auto 22px;
    overflow: hidden;
    border: 1px solid rgba(242, 11, 105, .16);
    border-radius: 13px;
    background:
        radial-gradient(circle at 100% 50%, rgba(242, 11, 105, .14), transparent 25%),
        linear-gradient(90deg, #050811, #080711 50%, #05070e);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}
.benefit-item {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 10px 16px;
}
.benefit-item + .benefit-item::before {
    position: absolute;
    top: 24%;
    bottom: 24%;
    left: 0;
    width: 1px;
    content: '';
    background: rgba(255,255,255,.08);
}
.benefit-icon {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 2px solid #ff2a83;
    border-radius: 13px;
    color: #ff2a83;
    font-size: 21px;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255,42,131,.32);
}
.benefit-play { border-radius: 50%; font-size: 15px; padding-left: 2px; }
.benefit-hd { width: 50px; flex-basis: 50px; font-size: 17px; font-style: italic; }
.benefit-lock::before {
    width: 15px;
    height: 13px;
    margin-top: 7px;
    border: 2px solid currentColor;
    border-radius: 3px;
    content: '';
}
.benefit-lock::after {
    position: absolute;
    width: 12px;
    height: 11px;
    margin-top: -14px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    content: '';
}
.benefit-device::before {
    width: 22px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 2px;
    content: '';
}
.benefit-device::after {
    position: absolute;
    width: 8px;
    height: 16px;
    margin: 11px 0 0 19px;
    border: 2px solid currentColor;
    border-radius: 2px;
    content: '';
    background: #070914;
}
.benefit-item > span:last-child { display: grid; gap: 3px; min-width: 0; }
.benefit-item strong {
    color: #ff3a8d;
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.1;
    text-transform: uppercase;
}
.benefit-item small {
    color: #f4f2f6;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.row-section { width: calc(100% - 40px); max-width: 1500px; }
.section-head h2 { font-size: 22px; text-transform: none; }
.section-head a { color: #ff1472; }
.poster-row {
    grid-auto-columns: calc((100% - 72px) / 5);
    column-gap: 18px !important;
}
.poster-row > .poster-card-wrap {
    width: 100%;
    max-width: 100%;
    justify-self: start;
}
.poster-card-wrap { min-width: clamp(165px, 15vw, 230px); }
.poster-card { border: 1px solid rgba(255,255,255,.10); border-radius: 10px; background: #080c15; }
.poster-card img { aspect-ratio: 3 / 3.55; }
.poster-card-title {
    position: static;
    display: block;
    padding: 13px 13px 15px;
    background: #080c15;
    font-size: 15px;
    font-weight: 800;
    opacity: 1;
    transform: none;
}
.poster-card:hover { border-color: rgba(242,11,105,.55); box-shadow: 0 14px 34px rgba(0,0,0,.42); }
.poster-card:hover .poster-card-title {
    transform: none;
    background: linear-gradient(135deg, #f52377, #bb084f);
}

@media (max-width: 1100px) {
    .profile-greeting { display: none; }
    .quick-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .platform-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefit-item:nth-child(3)::before { display: none; }
    .benefit-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.07); }
}

@media (max-width: 820px) {
    body { padding-top: 134px; }
    .topbar {
        display: grid;
        left: 0;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
        height: 80px;
        padding: 8px 12px 0;
    }
    .mobile-brand {
        display: flex;
        width: 115px;
        height: 64px;
        align-items: center;
        justify-content: center;
        align-self: center;
        transform: translateY(-4px);
    }
    .mobile-brand img { display: block; width: 115px; height: 64px; object-fit: contain; }
    .mobile-nav-toggle {
        display: none !important;
    }
    .mobile-nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 99px;
        background: #ff2a83;
        transition: transform .2s ease, opacity .2s ease;
    }
    .mobile-menu-open .mobile-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
    .mobile-menu-open .mobile-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-quick-nav {
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        z-index: 19;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        height: 54px;
        border-top: 1px solid rgba(255,255,255,.06);
        border-bottom: 1px solid rgba(255,255,255,.08);
        background: rgba(2,5,14,.97);
    }
    .mobile-quick-nav a {
        position: relative;
        display: grid;
        place-items: center;
        border-right: 1px solid rgba(255,255,255,.05);
        color: #b9bbc4;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
    }
    .mobile-quick-nav a:last-child { border-right: 0; }
    .mobile-quick-nav a.active { color: #fff; background: linear-gradient(180deg, rgba(242,11,105,.22), transparent); }
    .mobile-quick-nav a.active::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 3px;
        content: '';
        background: #f20b69;
        box-shadow: 0 0 12px rgba(242,11,105,.55);
    }
    .actions { min-width: 0; gap: 6px; align-items: center;}
    .top-search { min-width: 0; flex: 1; }
    .top-search input, .top-search.open input, .top-search:focus-within input { width: 100%; min-height: 40px; }
    .plan-btn { display: none; }
    .user-sidebar {
        display: flex;
        position: fixed;
        top: 134px;
        right: 12px;
        bottom: auto;
        left: 12px;
        z-index: 60;
        width: auto;
        height: auto;
        max-height: calc(100dvh - 148px);
        padding: 10px 12px 14px;
        border: 1px solid rgba(242,11,105,.28);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 20px 48px rgba(0,0,0,.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
    }
    .mobile-menu-open .user-sidebar {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .sidebar-brand { display: none !important; }
    .user-sidebar .mobile-sidebar-nav {
        position: relative;
        z-index: 2;
        display: grid !important;
        width: 100%;
        flex: 1 1 auto;
        align-content: start;
        justify-content: stretch;
        gap: 6px;
        overflow-y: auto;
        padding: 8px 0 20px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .user-sidebar .mobile-sidebar-nav > a,
    .user-sidebar .sidebar-menu-block > a,
    .user-sidebar .user-submenu a {
        display: flex !important;
        min-height: 46px;
        align-items: center;
        padding: 0 16px;
        color: #f3f3f7;
        font-size: 15px;
        opacity: 1;
        visibility: visible;
    }
    .user-sidebar .sidebar-menu-block { display: grid; }
    .user-submenu { display: grid; margin: 2px 0 8px; }
    .user-submenu a:nth-child(2) { display: flex; }
    .side-icon { font-size: 20px; }
    .sidebar-store-badges { display: none; }
    .mobile-nav-overlay {
        position: fixed;
        inset: 134px 0 0;
        z-index: 55;
        border: 0;
        padding: 0;
        background: rgba(0,0,0,.68);
        backdrop-filter: blur(3px);
    }
    .mobile-menu-open .mobile-nav-overlay { display: block; }
    .mobile-menu-open { overflow: hidden; }
    main, .site-footer { margin-left: 0; }
    main { padding-bottom: 0; }
    .hero-shell {
        width: calc(100% - 24px);
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .hero-slide { min-height: 0; }
    .quick-links, .row-section { width: calc(100% - 24px); }
    .platform-benefits { display: none !important; }
    .poster-row {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 160px;
        grid-template-columns: none;
        gap: 12px !important;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px 12px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
    .poster-row::-webkit-scrollbar { display: none; }
    .poster-row .poster-card-wrap {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        border-radius: 10px;
        isolation: isolate;
        scroll-snap-align: start;
    }
    .poster-row .poster-card {
        width: 100%;
        max-width: 100%;
        transform: none;
    }
    .poster-row .poster-card:hover { transform: none; }
}

@media (max-width: 580px) {
    .actions { gap: 4px; transform: translateY(11px); }
    .mobile-brand { width: 115px; transform: translateY(-5px);}
    .mobile-brand img { width: 115px; height: 64px;}
    .user-notification-bell { display: none; }
    .top-search input, .top-search.open input, .top-search:focus-within input { width: 100%; padding-left: 12px; font-size: 11px; }
    .actions > .login-btn { min-height: 40px; padding: 0 10px; font-size: 12px; }
    .poster-row {
        grid-auto-columns: calc((100% - 10px) / 2);
        gap: 10px !important;
    }
    .poster-row .poster-card-wrap .heart-btn {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 15px;
    }
    .poster-row .premium-badge {
        top: 5px;
        left: 5px;
        min-width: 25px;
        height: 25px;
    }
    .poster-row .premium-badge .diamond-icon { width: 18px; height: 16px; }
    .poster-row .poster-card-title { min-height: 36px; padding: 7px 6px; font-size: 10px; }
    .quick-links { grid-template-columns: 1fr; gap: 10px; }
    .quick-links > a { min-height: 72px; }
    .platform-benefits {
        display: flex;
        overflow: hidden;
    }
    .benefit-item {
        min-width: 0;
        min-height: 50px;
        flex: 1 1 25%;
        justify-content: flex-start;
        gap: 5px;
        padding: 6px 5px;
    }
    .benefit-item + .benefit-item::before {
        display: block;
        top: 18%;
        bottom: 18%;
    }
    .benefit-item:nth-child(n+2) { border-top: 0; }
    .benefit-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        border-width: 1.5px;
        border-radius: 7px;
        font-size: 12px;
    }
    .benefit-hd { width: 31px; flex-basis: 31px; font-size: 10px; }
    .benefit-item strong,
    .benefit-item small { overflow-wrap: anywhere; line-height: 1.05; }
    .benefit-item strong { font-size: 8px; letter-spacing: .025em; }
    .benefit-item small { font-size: 8px; letter-spacing: 0; }
    .benefit-lock::before { width: 10px; height: 9px; margin-top: 5px; }
    .benefit-lock::after { width: 8px; height: 7px; margin-top: -9px; }
    .benefit-device::before { width: 14px; height: 10px; }
    .benefit-device::after { width: 5px; height: 10px; margin: 8px 0 0 12px; border-width: 1px; }
    .plans-grid .plan-card { height: 230px; padding: 8px; }
    .plans-grid .plan-card h2 {
        min-height: 28px;
        margin-bottom: 3px;
        padding-right: 52px;
        font-size: 14px;
        line-height: 1.05;
    }
    .plans-grid .plan-card .discount-badge {
        top: 7px;
        right: 6px;
        padding: 3px 5px;
        font-size: 8px;
    }
    .plans-grid .plan-card .old-price { margin: 2px 0 0; font-size: 11px; }
    .plans-grid .plan-card .price { margin: 3px 0; font-size: 22px; line-height: 1; }
    .plans-grid .plan-card > p { margin-bottom: 4px; font-size: 10px; line-height: 1.15; }
    .plans-grid .plan-card ul {
        margin: 2px 0 5px;
        padding-left: 13px;
        font-size: 9px;
        line-height: 1.18;
    }
    .plans-grid .plan-card .wide-btn {
        min-height: 30px;
        padding: 0 5px;
        font-size: 10px;
        line-height: 1;
    }
    .hero-slide { padding: 24px; }
    .hero-copy h1 { font-size: 34px; }
    .hero-copy p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
}

@media (max-width: 580px) {
    .plans-page .plans-grid .plan-card {
        height: 120px;
        padding: 12px 13px 9px;
        border-radius: 15px;
    }
    .plans-page .plans-grid .plan-card h2 {
        min-height: auto;
        margin: 4px 0 0;
        padding-right: 90px;
        font-size: 17px;
    }
    .plans-page .plans-grid .plan-card .discount-badge {
        position: static;
        align-self: flex-start;
        padding: 0;
        font-size: 8px;
    }
    .plans-page .plans-grid .plan-card .old-price {
        top: 13px;
        right: 13px;
        margin: 0;
        font-size: 9px;
    }
    .plans-page .plans-grid .plan-card .price {
        top: 11px;
        right: 13px;
        margin: 0;
        font-size: 24px;
    }
    .plans-page .plans-grid .plan-card.has-discount .price { top: 28px; }
    .plans-page .plans-grid .plan-card > p {
        top: 39px;
        right: 13px;
        margin-bottom: 4px;
        padding-right: 0;
        font-size: 11px;
        text-align: right;
    }
    .plans-page .plans-grid .plan-card.has-discount > p { top: 55px; }
    .plans-page .plans-grid .plan-card.current-plan .plan-status {
        max-width: calc(100% - 96px);
        padding: 4px 6px;
        font-size: 8px;
    }
    .plans-page .plans-grid .plan-card ul { display: none; }
    .plans-page .plans-grid .plan-card .wide-btn {
        min-height: 27px;
        padding: 0 12px;
        font-size: 11px;
    }
}

/* Two clean poster columns on phones (listing/search/favorites pages). */
@media (max-width: 580px) {
    .grid-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 7px;
        width: 100%;
        max-width: 100%;
    }

    .grid-list > .poster-card-wrap {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }

    .grid-list .poster-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .grid-list .poster-card img {
        width: 100%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    .grid-list .poster-card-title {
        min-height: 38px;
        padding: 7px 6px;
        overflow-wrap: anywhere;
        font-size: 10px;
        line-height: 1.15;
        text-align: center;
    }

    .grid-list .poster-card-wrap .heart-btn {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .grid-list .premium-badge {
        top: 5px;
        left: 5px;
        min-width: 25px;
        height: 25px;
    }

    .grid-list .premium-badge .diamond-icon {
        width: 18px;
        height: 16px;
    }

    .poster-row .premium-badge .premium-crown-icon,
    .grid-list .premium-badge .premium-crown-icon {
        width: 24px;
        height: 24px;
    }
}

/* Mobile homepage rows: title/action alignment and three non-overlapping cards. */
@media (max-width: 580px) {
    .row-section .section-head {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .row-section .section-head h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.2;
    }

    .row-section .section-head a {
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 13px;
        line-height: 1.2;
        text-align: right;
    }

    .row-section .poster-row {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 16px) / 3);
        grid-template-columns: none;
        gap: 8px !important;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 5px 1px 12px;
    }

    .row-section .poster-row > .poster-card-wrap {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }

    .row-section .poster-row .poster-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .row-section .poster-row .poster-card img {
        width: 100%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    .row-section .poster-row .poster-card-title {
        min-height: 38px;
        padding: 7px 6px;
        overflow-wrap: anywhere;
        font-size: 10px;
        line-height: 1.15;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .mobile-quick-nav a {
        min-width: 0;
        padding-right: 10px;
        padding-left: 10px;
        font-size: clamp(11px, 3.5vw, 14px);
        line-height: 1.1;
        text-align: center;
        white-space: nowrap;
    }

    .mobile-quick-nav a:last-child {
        transform: translateX(-6px);
    }
}

/* App download badges stay visible at the bottom of the sidebar. */
.user-sidebar > .sidebar-store-badges {
    display: grid;
    width: 170px;
    justify-self: center;
    align-self: center;
    margin-top: auto;
    gap: 9px;
    padding-top: 20px;
}

.user-sidebar > .sidebar-store-badges .store-badge {
    width: 100%;
    min-height: 46px;
    border-color: #111;
    color: #111;
    background: #fff;
}

.user-sidebar > .sidebar-store-badges .store-badge-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 10 / 3;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.user-sidebar > .sidebar-store-badges .store-badge-image:hover {
    border-color: transparent;
    box-shadow: none;
}

.user-sidebar > .sidebar-store-badges .store-badge:not(.store-badge-image) {
    padding: 6px 10px;
}

.user-sidebar > .sidebar-store-badges .apple-mark {
    display: block;
    width: 25px;
    height: 32px;
    flex: 0 0 25px;
    color: #111;
}

.user-sidebar > .sidebar-store-badges .store-badge-copy small {
    font-size: 7px;
}

.user-sidebar > .sidebar-store-badges .store-badge-copy strong {
    font-size: 16px;
}

@media (max-width: 820px) {
    .user-sidebar > .sidebar-store-badges {
        flex: 0 0 auto;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-top: 10px;
    }

    .user-sidebar > .sidebar-store-badges .store-badge {
        min-height: 42px;
    }

    .user-sidebar > .sidebar-store-badges .store-badge-copy small {
        font-size: 6px;
    }

    .user-sidebar > .sidebar-store-badges .store-badge-copy strong {
        font-size: 12px;
    }

    .user-sidebar > .sidebar-store-badges .apple-mark {
        width: 22px;
        height: 28px;
        flex-basis: 22px;
    }
}
