@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    --bg: #080a0e;
    --bg-soft: #0d1015;
    --surface: #11151b;
    --surface-2: #171b22;
    --surface-3: #20252d;
    --wine: #321521;
    --wine-deep: #1d0d15;
    --gold: #d9b47a;
    --gold-light: #f0d5a7;
    --gold-soft: rgba(217, 180, 122, .24);
    --text: #f3eee7;
    --muted: #9e9ba0;
    --muted-light: #c7c1ba;
    --line: rgba(255, 255, 255, .12);
    --line-soft: rgba(255, 255, 255, .07);
    --display: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --radius: 4px;
    --shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

/* Reference-matched full-screen login experience. */
.auth-page {
    min-width: 320px;
    min-height: 100dvh;
    color: var(--text);
    background: #060709;
}

.auth-page .site-grain {
    z-index: 20;
}

.auth-screen {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 100dvh;
    grid-template-columns: minmax(0, 54%) minmax(500px, 46%);
    overflow: hidden;
    background: #060709;
}

.auth-screen::before,
.auth-screen::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: '';
    pointer-events: none;
}

.auth-screen::before {
    background: url('../images/login-theatre.webp') center / cover no-repeat;
}

.auth-screen::after {
    background:
        radial-gradient(circle at 25% 46%, transparent 0 22%, rgba(4, 5, 7, .22) 58%, rgba(4, 5, 7, .68) 100%),
        linear-gradient(90deg, rgba(4, 5, 7, .03) 0%, rgba(4, 5, 7, .12) 43%, rgba(4, 5, 7, .74) 56%, rgba(4, 5, 7, .96) 100%);
}

.auth-scene {
    position: relative;
    z-index: 2;
    min-height: 100dvh;
    overflow: hidden;
    border-right: 1px solid rgba(217, 180, 122, .08);
    pointer-events: none;
}

.auth-scene-copy {
    position: absolute;
    color: rgba(240, 213, 167, .82);
    font-size: 10px;
    letter-spacing: .52em;
    line-height: 1.75;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

.auth-scene-copy span {
    display: block;
}

.auth-scene-copy i {
    display: block;
    width: 32px;
    height: 2px;
    margin-top: 23px;
    background: var(--gold-light);
    box-shadow: 0 0 12px rgba(240, 213, 167, .35);
}

.auth-scene-copy-top {
    top: 20%;
    left: 6.5%;
}

.auth-scene-copy-center {
    top: 29%;
    left: 77%;
}

.auth-scene-copy-bottom {
    bottom: 7%;
    left: 6.5%;
}

.auth-scene-copy-bottom i {
    margin-top: 0;
    margin-bottom: 19px;
}

.login-panel {
    position: relative;
    z-index: 3;
    display: flex;
    min-width: 0;
    min-height: 100dvh;
    align-items: center;
    justify-content: center;
    padding: 7vh clamp(28px, 4vw, 62px);
    border-left: 1px solid rgba(255, 255, 255, .04);
    background: linear-gradient(90deg, rgba(5, 7, 9, .4), rgba(6, 8, 10, .86) 18%, rgba(6, 8, 10, .96));
}

.login-card {
    width: min(100%, 620px);
    padding: 63px 60px 42px;
    border: 1px solid rgba(240, 213, 167, .82);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(13, 16, 19, .86), rgba(8, 11, 14, .8));
    box-shadow: 0 28px 85px rgba(0, 0, 0, .63), inset 0 0 0 1px rgba(255, 255, 255, .045), 0 0 30px rgba(217, 180, 122, .05);
    backdrop-filter: blur(12px);
}

.login-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-light);
    text-align: center;
}

.login-brand strong {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    letter-spacing: .045em;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(217, 180, 122, .14);
}

.login-brand span {
    margin-top: 14px;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .53em;
    text-transform: uppercase;
}

.login-brand-rule {
    display: block;
    width: 54px;
    height: 2px;
    margin: 25px auto 30px;
    background: var(--gold-light);
    box-shadow: 0 0 13px rgba(240, 213, 167, .4);
}

.login-heading {
    text-align: center;
}

.login-heading h1 {
    margin: 0;
    color: var(--text);
    font-family: var(--display);
    font-size: clamp(2.55rem, 4vw, 3.55rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.login-heading p {
    margin: 12px 0 0;
    color: var(--muted-light);
    font-size: 16px;
    line-height: 1.5;
}

.login-form {
    margin-top: 36px;
}

.login-field {
    margin-bottom: 18px;
}

.input-shell {
    display: flex;
    min-width: 0;
    height: 63px;
    align-items: center;
    border: 1px solid rgba(240, 213, 167, .62);
    border-radius: 9px;
    color: var(--muted-light);
    background: rgba(8, 11, 14, .65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.input-shell:focus-within {
    border-color: var(--gold-light);
    background: rgba(19, 18, 18, .78);
    box-shadow: 0 0 0 3px rgba(217, 180, 122, .1), 0 0 22px rgba(217, 180, 122, .08);
}

.input-shell > svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin: 0 24px;
    color: #f0eee9;
    stroke-width: 1.45;
}

.input-shell input {
    min-width: 0;
    height: 100%;
    flex: 1;
    padding: 0 8px 0 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 16px;
}

.input-shell input::placeholder {
    color: #a7a5a4;
    opacity: 1;
}

.password-toggle {
    display: grid;
    width: 53px;
    height: 100%;
    flex: 0 0 53px;
    place-items: center;
    padding: 0;
    color: #aaa8a6;
    background: transparent;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    color: var(--gold-light);
}

.password-toggle svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.35;
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 3px 1px 28px;
    color: var(--muted-light);
    font-size: 15px;
}

.remember-option {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
}

.remember-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1.5px solid #f1efeb;
    border-radius: 5px;
    background: rgba(255, 255, 255, .02);
}

.remember-option input:checked + .custom-checkbox {
    border-color: var(--gold-light);
    background: var(--gold);
}

.remember-option input:checked + .custom-checkbox::after {
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #17100b;
    border-width: 0 2px 2px 0;
    content: '';
    transform: rotate(45deg);
}

.remember-option input:focus-visible + .custom-checkbox {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.login-options a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(240, 213, 167, .55);
    text-underline-offset: 4px;
    transition: color .2s ease;
}

.login-options a:hover,
.login-bottom a:hover {
    color: #fff3db;
}

.login-submit {
    position: relative;
    display: flex;
    width: 100%;
    height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 230, 188, .7);
    border-radius: 10px;
    color: #1c1711;
    background: linear-gradient(110deg, #e8bd7d, #f0d19a 52%, #e3b66f);
    box-shadow: 0 12px 28px rgba(217, 180, 122, .13), inset 0 1px 0 rgba(255, 255, 255, .42);
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: .025em;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.login-submit:hover {
    filter: brightness(1.07);
    box-shadow: 0 15px 34px rgba(217, 180, 122, .25), 0 0 24px rgba(217, 180, 122, .16);
    transform: translateY(-1px);
}

.login-submit-arrow {
    position: absolute;
    right: 29px;
    font-family: var(--sans);
    font-size: 29px;
    font-weight: 400;
    line-height: 1;
    animation: login-arrow-pulse 2.7s ease-in-out infinite;
}

@keyframes login-arrow-pulse {
    0%, 70%, 100% { transform: translateX(0); }
    78% { transform: translateX(4px); }
    84% { transform: translateX(0); }
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 28px 0 23px;
    color: #b1ada8;
    font-size: 16px;
}

.login-divider::before,
.login-divider::after {
    height: 1px;
    flex: 1;
    content: '';
    background: rgba(255, 255, 255, .42);
}

.google-button {
    display: flex;
    width: 100%;
    height: 63px;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border: 1px solid rgba(240, 213, 167, .68);
    border-radius: 9px;
    color: var(--text);
    background: rgba(8, 11, 14, .58);
    font-size: 16px;
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.google-button:hover,
.google-button:focus-visible {
    border-color: var(--gold-light);
    background: rgba(217, 180, 122, .07);
    box-shadow: 0 0 22px rgba(217, 180, 122, .1);
}

.google-g {
    color: #4285f4;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    background: conic-gradient(from -40deg, #4285f4 0 25%, #34a853 25% 45%, #fbbc05 45% 66%, #ea4335 66% 82%, #4285f4 82%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-bottom {
    margin-top: 33px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .17);
    color: #b1ada8;
    font-size: 16px;
    text-align: center;
}

.login-bottom a {
    color: var(--gold-light);
    transition: color .2s ease;
}

.login-card .form-message {
    margin: 25px 0 -10px;
    border-color: rgba(217, 180, 122, .4);
    border-radius: 7px;
    background: rgba(217, 180, 122, .08);
    line-height: 1.55;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    clip-path: inset(50%);
}

@media (max-width: 1120px) and (min-width: 901px) {
    .auth-screen {
        grid-template-columns: minmax(0, 48%) minmax(500px, 52%);
    }

    .login-panel {
        padding-right: 30px;
        padding-left: 30px;
    }

    .login-card {
        padding-right: 45px;
        padding-left: 45px;
    }

    .auth-scene-copy-center {
        left: 72%;
    }
}

@media (max-width: 900px) {
    .auth-screen {
        display: block;
        min-height: 0;
        overflow: visible;
    }

    .auth-screen::before {
        right: 0;
        bottom: auto;
        height: 360px;
        background-position: 22% top;
    }

    .auth-screen::after {
        bottom: auto;
        height: 460px;
        background: linear-gradient(180deg, rgba(4, 5, 7, .08) 0%, rgba(4, 5, 7, .32) 58%, #07090d 100%);
    }

    .auth-scene {
        min-height: 360px;
        border-right: 0;
    }

    .auth-scene-copy {
        display: none;
    }

    .login-panel {
        min-height: 0;
        padding: 18px 20px 58px;
        border-left: 0;
        background: #07090d;
    }

    .login-card {
        padding: 48px 38px 35px;
    }
}

@media (max-width: 560px) {
    .auth-scene,
    .auth-screen::before {
        min-height: 280px;
        height: 280px;
    }

    .auth-screen::after {
        height: 380px;
    }

    .login-panel {
        padding-right: 14px;
        padding-left: 14px;
    }

    .login-card {
        padding: 37px 20px 29px;
        border-radius: 11px;
    }

    .login-brand strong {
        font-size: 2.35rem;
    }

    .login-brand span {
        font-size: 8px;
        letter-spacing: .4em;
    }

    .login-brand-rule {
        margin-top: 21px;
        margin-bottom: 25px;
    }

    .login-heading h1 {
        font-size: 2.55rem;
    }

    .login-heading p,
    .login-options,
    .login-bottom {
        font-size: 14px;
    }

    .login-form {
        margin-top: 29px;
    }

    .input-shell,
    .google-button,
    .login-submit {
        height: 59px;
    }

    .input-shell > svg {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
        margin-right: 17px;
        margin-left: 18px;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 24px;
    }

    .login-submit-arrow {
        right: 21px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 78% 12%, rgba(87, 30, 48, .16), transparent 26rem),
        var(--bg);
    font-family: var(--sans);
    line-height: 1.5;
}

body.is-menu-open {
    overflow: hidden;
}

body::selection {
    color: var(--bg);
    background: var(--gold);
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    color: inherit;
    cursor: pointer;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.site-grain {
    position: fixed;
    z-index: 100;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.container {
    width: min(1360px, calc(100% - 96px));
    margin: 0 auto;
}

.eyebrow,
.section-kicker,
.footer-label,
.poster-kicker,
.detail-kicker,
.hero-side-kicker {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    background: rgba(8, 10, 14, .78);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 10, 14, .94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
}

.header-inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.brand-mark {
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: .18em;
}

.brand-sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .45em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 28px;
    margin-right: auto;
}

.nav-link {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: center;
    color: var(--muted-light);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: '';
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--gold-light);
}

.nav-link.is-active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-mini {
    display: flex;
    width: 224px;
    height: 40px;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    color: var(--muted-light);
    transition: border-color .2s ease, background .2s ease;
}

.search-mini:focus-within {
    border-color: rgba(217, 180, 122, .7);
    background: rgba(255, 255, 255, .06);
}

.search-mini svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.search-mini input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 12px;
}

.search-mini input::placeholder {
    color: #8d8990;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 10px;
}

.button-gold {
    color: #17120e;
    background: linear-gradient(135deg, #f0d5a7, #c8985c);
    box-shadow: 0 7px 20px rgba(210, 167, 100, .12);
}

.button-gold:hover {
    box-shadow: 0 9px 26px rgba(210, 167, 100, .27);
}

.button-ghost {
    border-color: rgba(255, 255, 255, .2);
    color: var(--text);
    background: rgba(255, 255, 255, .02);
}

.button-ghost:hover {
    border-color: rgba(217, 180, 122, .72);
    background: rgba(217, 180, 122, .08);
}

.button-dark {
    border-color: var(--line);
    background: rgba(255, 255, 255, .05);
}

.button svg {
    width: 17px;
    height: 17px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px auto;
    background: var(--gold);
    transition: transform .2s ease;
}

.is-menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    isolation: isolate;
}

.hero-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    overflow: hidden;
    background-color: #1b1117;
}

.hero-backdrop::before {
    position: absolute;
    inset: 0;
    content: '';
    background:
        radial-gradient(circle at 72% 27%, rgba(202, 99, 67, .64) 0 5%, transparent 5.5%),
        radial-gradient(circle at 72% 28%, rgba(84, 42, 43, .75) 0 13%, transparent 13.4%),
        linear-gradient(108deg, #180c13 2%, rgba(30, 12, 22, .78) 36%, rgba(10, 15, 20, .12) 70%),
        linear-gradient(180deg, #1a1117 0%, #49212a 46%, #11151b 100%);
}

.hero-backdrop::after {
    position: absolute;
    right: -5%;
    bottom: -5%;
    width: 65%;
    height: 65%;
    content: '';
    opacity: .42;
    background:
        repeating-linear-gradient(82deg, transparent 0 45px, rgba(218, 169, 112, .08) 46px 48px),
        linear-gradient(174deg, transparent 0 42%, rgba(4, 6, 9, .9) 42% 44%, transparent 44% 50%, rgba(4, 6, 9, .92) 50% 53%, transparent 53%);
    transform: perspective(480px) rotateX(57deg) rotateZ(-9deg);
    transform-origin: bottom right;
}

.hero-home .hero-backdrop {
    background-image: url('../images/hero-last-horizon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-home .hero-backdrop::before {
    background:
        radial-gradient(ellipse at 18% 62%, rgba(10, 7, 11, .8), transparent 45%),
        linear-gradient(90deg, rgba(8, 7, 11, .98) 0%, rgba(26, 10, 19, .78) 34%, rgba(10, 12, 16, .12) 77%),
        linear-gradient(180deg, rgba(7, 8, 12, .38), transparent 42%, rgba(7, 8, 12, .22) 78%, rgba(7, 8, 12, .58));
    opacity: 1;
}

.hero-home .hero-backdrop::after {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: linear-gradient(180deg, transparent 68%, rgba(7, 8, 12, .55) 100%);
    transform: none;
}

.hero-content {
    display: grid;
    min-height: 520px;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 80px;
    padding-top: 54px;
    padding-bottom: 54px;
}

.hero-copy {
    max-width: 670px;
}

.hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-imdb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 9px;
    border: 1px solid rgba(217, 180, 122, .72);
    border-radius: 4px;
    color: #f7e5c8;
    background: rgba(8, 9, 12, .48);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18);
    font-size: 14px;
    line-height: 1;
}

.hero-imdb strong {
    padding: 2px 3px;
    color: #18110d;
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
}

.hero-imdb span {
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 18px;
}

.hero-copy .eyebrow::before {
    width: 34px;
    height: 1px;
    content: '';
    background: var(--gold);
}

.hero-title {
    max-width: 720px;
    margin: 20px 0 12px;
    color: #f8f3ed;
    font-family: var(--display);
    font-size: clamp(3.35rem, 5.2vw, 5.75rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .86;
}

.hero-title span {
    display: block;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 26px 0 19px;
    color: var(--muted-light);
    font-size: 13px;
}

.hero-meta .rating {
    color: var(--gold-light);
}

.hero-description {
    max-width: 550px;
    margin: 0;
    color: #c6bec0;
    font-size: 15px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.play-icon {
    position: relative;
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
}

.play-icon::before {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(217, 180, 122, .3);
    border-radius: 50%;
    content: '';
    animation: softPulse 2.2s ease-in-out infinite;
}

.play-icon::after {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
    content: '';
    transform: translateX(1px);
}

@keyframes softPulse {
    0%, 100% { opacity: .26; transform: scale(.86); }
    50% { opacity: .7; transform: scale(1.1); }
}

.hero-sidecard {
    align-self: center;
    padding: 29px 25px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(7, 10, 14, .78), rgba(17, 11, 16, .58));
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
}

.hero-sidecard h2 {
    margin: 29px 0 24px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 54px;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .84;
}

.hero-sidecard h2 span {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: .04em;
}

.hero-sidecard p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .26em;
    line-height: 1.8;
    text-transform: uppercase;
}

.sidecard-rule {
    height: 1px;
    margin: 22px 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 78px;
    border-bottom: 1px solid var(--line-soft);
    background:
        radial-gradient(circle at 82% 20%, rgba(116, 39, 57, .36), transparent 24rem),
        linear-gradient(100deg, rgba(34, 15, 24, .98), rgba(8, 10, 14, .82) 65%),
        var(--bg);
}

.page-hero::after {
    position: absolute;
    right: 7%;
    bottom: -34px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(217, 180, 122, .16);
    border-radius: 50%;
    content: '';
    box-shadow: 0 0 0 28px rgba(217, 180, 122, .025), 0 0 0 58px rgba(217, 180, 122, .018);
}

.page-hero h1 {
    max-width: 800px;
    margin: 18px 0 18px;
    font-family: var(--display);
    font-size: clamp(3.6rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .86;
}

.page-hero p {
    max-width: 570px;
    margin: 0;
    color: var(--muted-light);
    font-size: 15px;
    line-height: 1.75;
}

.section {
    padding: 92px 0 0;
}

.section:last-child {
    padding-bottom: 110px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: .045em;
    line-height: .9;
}

.section-heading h2::after {
    display: inline-block;
    width: 92px;
    height: 1px;
    margin: 0 0 10px 22px;
    content: '';
    background: var(--gold);
    vertical-align: middle;
}

.section-heading p {
    max-width: 350px;
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
    text-align: right;
}

.gold-number {
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 21px;
}

.gold-arrow {
    color: var(--gold-light);
}

.filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
    padding: 10px;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    background: rgba(255, 255, 255, .02);
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.filter-button {
    padding: 9px 13px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    letter-spacing: .05em;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.filter-button:hover,
.filter-button.is-active {
    border-color: rgba(217, 180, 122, .35);
    color: var(--gold-light);
    background: rgba(217, 180, 122, .09);
}

.filter-search {
    display: flex;
    width: min(260px, 100%);
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
}

.filter-search svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
}

.filter-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 12px;
}

.filter-search input::placeholder {
    color: var(--muted);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px 14px;
}

.media-grid.grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card {
    min-width: 0;
}

.has-poster-image .card-under {
    display: none;
}

.poster {
    position: relative;
    aspect-ratio: 270 / 380;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 5px;
    background-color: #20232a;
    box-shadow: 0 11px 28px rgba(0, 0, 0, .2);
    isolation: isolate;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.poster-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-image-link {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
}

.poster::before,
.poster::after {
    pointer-events: none;
}

.poster-has-image::before {
    background: linear-gradient(180deg, rgba(5, 6, 9, .06), transparent 45%, rgba(3, 4, 6, .58));
}

.poster::before,
.poster::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
}

.poster::after {
    z-index: 1;
    background: linear-gradient(180deg, transparent 43%, rgba(3, 4, 6, .08) 51%, rgba(3, 4, 6, .88) 100%);
}

.media-card:hover .poster {
    border-color: rgba(217, 180, 122, .7);
    box-shadow: 0 0 24px rgba(212, 175, 90, .25), 0 15px 35px rgba(0, 0, 0, .35);
    transform: scale(1.03) translateY(-4px);
}

.poster-art {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.poster-art::before {
    position: absolute;
    top: 13%;
    right: 12%;
    width: 34%;
    height: 34%;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    content: '';
    opacity: .6;
}

.poster-art::after {
    position: absolute;
    right: 8%;
    bottom: 18%;
    left: 8%;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
    opacity: .55;
    transform: rotate(-12deg);
}

.poster-kicker {
    position: absolute;
    top: 20px;
    left: 18px;
    z-index: 2;
    max-width: calc(100% - 36px);
    color: rgba(255, 245, 230, .74);
    font-size: 8px;
    letter-spacing: .24em;
    line-height: 1.4;
}

.poster-symbol {
    position: absolute;
    right: 20%;
    bottom: 25%;
    width: 1px;
    height: 28%;
    background: linear-gradient(transparent, rgba(255, 235, 190, .75), transparent);
    box-shadow: 0 0 15px rgba(255, 214, 139, .3);
    transform: rotate(19deg);
}

.poster-symbol::after {
    position: absolute;
    top: 45%;
    right: -34px;
    width: 68px;
    height: 1px;
    content: '';
    background: rgba(255, 235, 190, .52);
}

.genre-pill {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: auto;
    left: 16px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: rgba(255, 245, 230, .82);
    background: rgba(7, 8, 11, .36);
    backdrop-filter: blur(10px);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.favorite-toggle {
    position: absolute;
    z-index: 4;
    top: 58px;
    right: 16px;
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: var(--text);
    background: rgba(7, 8, 11, .32);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, color .2s ease, background .2s ease;
}

.favorite-toggle svg {
    width: 15px;
    height: 15px;
}

.media-card:hover .favorite-toggle,
.favorite-toggle[aria-pressed="true"] {
    opacity: 1;
    transform: translateY(0);
}

.favorite-toggle[aria-pressed="true"] {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(217, 180, 122, .18);
}

.poster-info {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 15px;
    left: 16px;
}

.poster-title {
    display: block;
    overflow: hidden;
    color: #fbf5ec;
    font-family: var(--display);
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    letter-spacing: -.025em;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.poster-title:hover {
    color: var(--gold-light);
}

.poster-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    color: rgba(244, 235, 226, .68);
    font-size: 10px;
}

.meta-dot {
    color: var(--gold);
}

.poster-meta .rating {
    margin-left: auto;
    color: var(--gold-light);
}

.star {
    color: var(--gold);
}

.card-under {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 2px 0;
    color: var(--muted);
    font-size: 10px;
}

.text-link {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .06em;
    white-space: nowrap;
}

.text-link span {
    display: inline-block;
    margin-left: 3px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translate(2px, -2px);
}

.poster--horizon,
.poster--ember,
.poster--stage,
.poster--series-ember,
.poster--collection-ember,
.actor-copper {
    background: radial-gradient(circle at 65% 25%, rgba(213, 131, 79, .62), transparent 22%), linear-gradient(142deg, #3f1c24, #171317 57%, #100d11);
}

.poster--horizon::before {
    background: linear-gradient(165deg, transparent 0 47%, rgba(242, 190, 121, .16) 48% 49%, transparent 50%), repeating-linear-gradient(90deg, transparent 0 42px, rgba(16, 12, 17, .5) 43px 47px);
}

.poster--ember::before {
    background: linear-gradient(130deg, transparent 0 50%, rgba(218, 177, 117, .65) 51% 54%, transparent 55%), radial-gradient(ellipse at 20% 75%, #d49260 0 5%, transparent 6%);
}

.poster--ocean,
.poster--rail,
.poster--series-ocean,
.poster--collection-ocean,
.actor-blue {
    background: radial-gradient(circle at 50% 24%, rgba(192, 222, 225, .37), transparent 15%), linear-gradient(155deg, #364d5d, #121c29 56%, #0c111a);
}

.poster--ocean::before,
.poster--series-ocean::before {
    background: linear-gradient(90deg, transparent 48%, rgba(211, 235, 235, .9) 49% 50%, transparent 51%), linear-gradient(172deg, transparent 0 67%, rgba(7, 10, 17, .9) 68% 74%, transparent 75%);
}

.poster--rose,
.poster--blue-hour,
.actor-rose {
    background: radial-gradient(circle at 72% 20%, rgba(220, 155, 165, .52), transparent 20%), linear-gradient(155deg, #56333c, #172027 64%, #0c1117);
}

.poster--rose::before {
    border-radius: 2px;
    background: repeating-linear-gradient(70deg, transparent 0 20px, rgba(240, 213, 183, .18) 21px 23px);
    transform: rotate(-13deg) scale(1.25);
}

.poster--stone,
.poster--aurora,
.actor-ivory {
    background: radial-gradient(circle at 20% 22%, rgba(227, 226, 204, .55), transparent 17%), linear-gradient(150deg, #7f837c, #273039 58%, #11161b);
}

.poster--stone::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(145deg, transparent 0 53%, rgba(18, 24, 27, .78) 54% 69%, transparent 70%), repeating-linear-gradient(155deg, transparent 0 30px, rgba(242, 229, 192, .12) 31px 32px);
}

.poster--signal,
.poster--series-night,
.poster--collection-night,
.actor-wine {
    background: radial-gradient(ellipse at 50% 47%, rgba(255, 121, 82, .65) 0 2%, transparent 3%), linear-gradient(120deg, #471822, #171119 63%, #0c1015);
}

.poster--signal::before {
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(0deg, transparent 0 9px, rgba(226, 80, 63, .36) 10px 11px), linear-gradient(90deg, transparent 45%, rgba(250, 119, 82, .75) 46% 54%, transparent 55%);
}

.poster--violet,
.actor-violet {
    background: radial-gradient(circle at 66% 27%, rgba(170, 130, 200, .6), transparent 19%), linear-gradient(150deg, #432e58, #151523 59%, #0c1015);
}

.poster--house,
.poster--glass,
.poster--series-glass,
.actor-charcoal {
    background: radial-gradient(circle at 75% 17%, rgba(236, 212, 155, .35), transparent 12%), linear-gradient(145deg, #44505b, #1d252d 55%, #0b0f14);
}

.poster--house::before,
.poster--glass::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(160deg, transparent 0 42%, rgba(213, 186, 134, .27) 43% 44%, transparent 45%), linear-gradient(90deg, transparent 15%, rgba(10, 14, 19, .8) 16% 18%, transparent 19% 79%, rgba(10, 14, 19, .8) 80% 82%, transparent 83%);
}

.poster--stage,
.poster--series-stage {
    background: radial-gradient(ellipse at 50% 18%, rgba(246, 191, 113, .56), transparent 23%), linear-gradient(180deg, #652f32, #21131c 57%, #0e0e14);
}

.poster--stage::before,
.poster--series-stage::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(9, 8, 11, .7), transparent 16% 84%, rgba(9, 8, 11, .7)), repeating-linear-gradient(90deg, transparent 0 28px, rgba(246, 207, 143, .13) 29px 31px);
}

.poster--actor-copper {
    background: radial-gradient(circle at 72% 20%, rgba(219, 157, 96, .55), transparent 21%), linear-gradient(145deg, #533021, #121619 68%);
}

.poster--actor-rose {
    background: radial-gradient(circle at 72% 20%, rgba(220, 153, 171, .55), transparent 21%), linear-gradient(145deg, #533140, #11151b 68%);
}

.poster--actor-ivory {
    background: radial-gradient(circle at 72% 20%, rgba(230, 213, 169, .56), transparent 21%), linear-gradient(145deg, #5e5f52, #17191a 68%);
}

.poster--actor-blue {
    background: radial-gradient(circle at 72% 20%, rgba(136, 182, 202, .55), transparent 21%), linear-gradient(145deg, #29475a, #10171c 68%);
}

.poster--actor-wine {
    background: radial-gradient(circle at 72% 20%, rgba(210, 115, 118, .55), transparent 21%), linear-gradient(145deg, #4d202d, #111318 68%);
}

.poster--actor-green {
    background: radial-gradient(circle at 72% 20%, rgba(155, 183, 142, .5), transparent 21%), linear-gradient(145deg, #30453d, #10171a 68%);
}

.poster--actor-violet {
    background: radial-gradient(circle at 72% 22%, rgba(179, 139, 200, .52), transparent 21%), linear-gradient(145deg, #443054, #10121a 68%);
}

.poster--actor-charcoal {
    background: radial-gradient(circle at 72% 22%, rgba(179, 188, 184, .33), transparent 21%), linear-gradient(145deg, #374049, #0e1318 68%);
}

.poster--blue-hour::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, transparent 0 49%, rgba(9, 13, 21, .8) 50% 78%, transparent 79%), radial-gradient(ellipse at 38% 53%, rgba(238, 206, 160, .7) 0 1%, transparent 2%);
}

.poster--rail::before {
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(164deg, transparent 0 32px, rgba(223, 204, 169, .25) 33px 35px), linear-gradient(170deg, transparent 0 61%, rgba(7, 10, 14, .85) 62% 76%, transparent 77%);
}

.poster--aurora::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(115deg, transparent 0 40%, rgba(82, 179, 172, .48) 41% 49%, transparent 50% 56%, rgba(147, 102, 187, .45) 57% 63%, transparent 64%);
}

.poster--series-ember::before,
.poster--collection-ember::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(150deg, transparent 0 48%, rgba(237, 184, 117, .32) 49% 50%, transparent 51%), linear-gradient(90deg, rgba(10, 9, 12, .55), transparent 50%);
}

.poster--series-glass::before {
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(105deg, transparent 0 22px, rgba(212, 224, 232, .16) 23px 26px), linear-gradient(145deg, transparent 0 51%, rgba(7, 11, 17, .75) 52% 73%, transparent 74%);
}

.poster--series-night::before,
.poster--collection-night::before {
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(0deg, transparent 0 11px, rgba(227, 87, 78, .2) 12px 13px), linear-gradient(90deg, transparent 48%, rgba(239, 126, 85, .52) 49% 51%, transparent 52%);
}

.poster--series-stage::before {
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, transparent 20%, rgba(248, 207, 137, .26) 21% 24%, transparent 25% 74%, rgba(248, 207, 137, .26) 75% 78%, transparent 79%);
}

.poster--actor-copper,
.poster--actor-rose,
.poster--actor-ivory,
.poster--actor-blue,
.poster--actor-wine,
.poster--actor-green,
.poster--actor-violet,
.poster--actor-charcoal {
    min-height: 230px;
    aspect-ratio: 1 / 1.12;
}

.actor-card .poster::after {
    background: linear-gradient(180deg, transparent 35%, rgba(3, 4, 6, .92));
}

.actor-card .poster-art::before {
    top: 23%;
    right: auto;
    left: calc(50% - 41px);
    width: 82px;
    height: 82px;
    border-color: rgba(255, 239, 201, .5);
}

.actor-initials {
    position: absolute;
    z-index: 1;
    top: 26%;
    right: 0;
    left: 0;
    color: rgba(255, 243, 214, .82);
    font-family: var(--display);
    font-size: 45px;
    text-align: center;
}

.actor-card .poster-info {
    text-align: center;
}

.actor-card .poster-title {
    font-size: 1.35rem;
}

.actor-role {
    display: block;
    margin-top: 5px;
    color: var(--muted-light);
    font-size: 10px;
}

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

.genre-card {
    position: relative;
    display: flex;
    min-height: 190px;
    align-items: end;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    isolation: isolate;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.genre-card::before,
.genre-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
}

.genre-card::after {
    background: linear-gradient(180deg, transparent 25%, rgba(5, 7, 9, .88));
}

.genre-card:hover {
    border-color: rgba(217, 180, 122, .65);
    box-shadow: 0 0 24px rgba(212, 175, 90, .14);
    transform: translateY(-4px);
}

.genre-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: .9;
}

.genre-card span {
    position: relative;
    z-index: 1;
}

.genre-card p {
    position: absolute;
    z-index: 1;
    right: 18px;
    top: 20px;
    margin: 0;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.genre-card.genre--ember::before { background: radial-gradient(circle at 75% 20%, #b76049, transparent 26%), linear-gradient(145deg, #331822, #0e1319); }
.genre-card.genre--ocean::before { background: radial-gradient(circle at 72% 22%, #7ea7ae, transparent 26%), linear-gradient(145deg, #1f3a48, #0d141c); }
.genre-card.genre--night::before { background: radial-gradient(circle at 74% 22%, #d76a59, transparent 17%), linear-gradient(145deg, #471722, #101118); }
.genre-card.genre--rose::before { background: radial-gradient(circle at 72% 25%, #d38c94, transparent 24%), linear-gradient(145deg, #4b2d3c, #10151b); }
.genre-card.genre--stone::before { background: radial-gradient(circle at 72% 18%, #ced2bb, transparent 20%), linear-gradient(145deg, #56615e, #12181d); }
.genre-card.genre--violet::before { background: radial-gradient(circle at 75% 18%, #a982bd, transparent 22%), linear-gradient(145deg, #352642, #10121c); }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 92px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted-light);
    font-size: 11px;
}

.trust-icon {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(217, 180, 122, .34);
    border-radius: 50%;
    color: var(--gold);
    font-size: 12px;
}

.empty-state {
    display: none;
    padding: 76px 20px;
    border: 1px dashed rgba(255, 255, 255, .16);
    color: var(--muted);
    text-align: center;
}

.empty-state.is-visible {
    display: block;
}

.empty-state h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-family: var(--display);
    font-size: 2.8rem;
    font-weight: 400;
}

.empty-state p {
    max-width: 410px;
    margin: 0 auto 22px;
    font-size: 13px;
}

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

.collection-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    padding: 27px;
    border: 1px solid var(--line);
    background: var(--surface);
    isolation: isolate;
    transition: border-color .25s ease, transform .25s ease;
}

.collection-card::before,
.collection-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
}

.collection-card::after {
    background: linear-gradient(180deg, transparent 20%, rgba(4, 5, 8, .9));
}

.collection-card:hover {
    border-color: rgba(217, 180, 122, .65);
    transform: translateY(-4px);
}

.collection-card h3 {
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 62px;
    left: 25px;
    margin: 0;
    font-family: var(--display);
    font-size: 2.35rem;
    font-weight: 400;
    line-height: .9;
}

.collection-card p {
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 24px;
    left: 25px;
    margin: 0;
    color: var(--muted-light);
    font-size: 11px;
}

.collection-card.collection-night::before { background: radial-gradient(circle at 80% 20%, #d06a54, transparent 25%), linear-gradient(140deg, #3f1520, #0c1118); }
.collection-card.collection-ember::before { background: radial-gradient(circle at 25% 20%, #db9a6a, transparent 26%), linear-gradient(140deg, #4a2025, #101217); }
.collection-card.collection-ocean::before { background: radial-gradient(circle at 72% 22%, #8bb7c0, transparent 27%), linear-gradient(140deg, #1e4352, #0b141c); }

/* Seçkiler: full-bleed editorial hero and image-led collection cards. */
.collections-hero {
    min-height: 570px;
    padding: 0;
    border-bottom-color: rgba(217, 180, 122, .16);
    background: #090b10;
    isolation: isolate;
}

.collections-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, rgba(7, 8, 12, .1) 0%, rgba(7, 8, 12, .18) 38%, rgba(7, 8, 12, .78) 79%, rgba(7, 8, 12, .97) 100%),
        linear-gradient(180deg, rgba(6, 7, 10, .18), rgba(6, 7, 10, .72)),
        url('../images/hero-last-horizon.webp') center / cover no-repeat;
}

.collections-hero::after {
    right: 9%;
    bottom: -96px;
    width: 360px;
    height: 360px;
    border-color: rgba(217, 180, 122, .18);
    box-shadow: 0 0 0 35px rgba(217, 180, 122, .028), 0 0 0 76px rgba(217, 180, 122, .018), 0 0 95px rgba(0, 0, 0, .48);
}

.collections-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 570px;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: end;
    gap: 65px;
    padding-top: 84px;
    padding-bottom: 70px;
}

.collections-hero-copy {
    max-width: 640px;
}

.collections-hero h1 {
    max-width: 640px;
    margin: 22px 0 21px;
    font-size: clamp(4rem, 7vw, 6.8rem);
    letter-spacing: -.07em;
    line-height: .83;
}

.collections-hero h1 span {
    color: var(--gold-light);
}

.collections-hero p {
    max-width: 510px;
    color: rgba(235, 228, 218, .78);
    font-size: 15px;
    line-height: 1.75;
}

.collections-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.collections-hero-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(217, 180, 122, .55);
}

.curator-note {
    padding: 28px 28px 25px;
    border: 1px solid rgba(240, 213, 167, .54);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(14, 16, 20, .72), rgba(8, 10, 14, .62));
    box-shadow: 0 24px 58px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .035);
    backdrop-filter: blur(11px);
}

.curator-note-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .25em;
    line-height: 1.4;
}

.curator-note-rule {
    height: 1px;
    margin: 23px 0 25px;
    background: linear-gradient(90deg, var(--gold), rgba(217, 180, 122, .14));
}

.curator-note strong {
    display: block;
    color: var(--text);
    font-family: var(--display);
    font-size: 2.45rem;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .98;
}

.curator-note p {
    margin: 22px 0 27px;
    color: var(--muted-light);
    font-size: 12px;
    line-height: 1.7;
}

.curator-note-sign {
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .32em;
}

.collections-section {
    padding-top: 105px;
}

.collections-heading {
    margin-bottom: 36px;
}

.collection-grid-premium {
    gap: 20px;
}

.collection-card-premium {
    min-height: 365px;
    padding: 29px;
    border-color: rgba(255, 255, 255, .18);
    border-radius: 9px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.collection-card-premium::before {
    z-index: -2;
    transform: scale(1.01);
    transition: transform .5s ease, filter .5s ease;
}

.collection-card-premium::after {
    background: linear-gradient(180deg, rgba(4, 5, 8, .12) 0%, rgba(4, 5, 8, .1) 24%, rgba(4, 5, 8, .92) 100%);
}

.collection-card-premium:hover {
    border-color: rgba(240, 213, 167, .78);
    box-shadow: 0 0 25px rgba(212, 175, 90, .19), 0 22px 45px rgba(0, 0, 0, .35);
    transform: translateY(-6px);
}

.collection-card-premium:hover::before {
    filter: saturate(1.16) brightness(1.07);
    transform: scale(1.055);
}

.collection-image {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    mix-blend-mode: screen;
    transition: opacity .5s ease, transform .5s ease;
}

.collection-card-premium:hover .collection-image {
    opacity: .76;
    transform: scale(1.045);
}

.collection-card-premium > .eyebrow {
    position: relative;
    z-index: 1;
    color: rgba(255, 240, 210, .75);
    font-size: 9px;
    letter-spacing: .19em;
}

.collection-index {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: 27px;
    color: rgba(240, 213, 167, .42);
    font-family: var(--display);
    font-size: 2.15rem;
    line-height: 1;
}

.collection-card-label {
    position: absolute;
    z-index: 1;
    right: 29px;
    bottom: 31px;
    color: rgba(240, 213, 167, .76);
    font-size: 8px;
    letter-spacing: .23em;
}

.collection-card-content {
    position: absolute;
    z-index: 1;
    right: 29px;
    bottom: 66px;
    left: 29px;
}

.collection-card-premium h3 {
    position: static;
    margin: 0 0 12px;
    font-size: 2.65rem;
    line-height: .88;
}

.collection-card-premium p {
    position: static;
    max-width: 245px;
    color: rgba(236, 229, 220, .8);
    font-size: 12px;
    line-height: 1.55;
}

.collection-card-premium .gold-arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 18px;
    transition: transform .25s ease;
}

.collection-card-premium:hover .gold-arrow {
    transform: translate(3px, -3px);
}

.shortlist-section {
    padding-top: 112px;
    background: linear-gradient(180deg, transparent, rgba(29, 13, 21, .2));
}

.shortlist-heading {
    margin-bottom: 15px;
}

.shortlist-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 37px;
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.shortlist-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .02em;
    text-align: right;
    text-transform: none;
}

.detail-hero {
    position: relative;
    min-height: 665px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #171017;
    isolation: isolate;
}

.detail-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(7, 8, 12, 1) 0%, rgba(26, 10, 19, .91) 33%, rgba(11, 13, 18, .12) 80%),
        url('../images/hero-last-horizon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.detail-backdrop::after {
    position: absolute;
    right: -4%;
    bottom: -15%;
    width: 65%;
    height: 72%;
    content: '';
    opacity: .55;
    background: repeating-linear-gradient(86deg, transparent 0 55px, rgba(227, 181, 120, .1) 56px 59px), linear-gradient(170deg, transparent 0 48%, #07090d 49% 57%, transparent 58%);
    transform: perspective(500px) rotateX(55deg) rotateZ(-9deg);
}

.detail-layout {
    display: grid;
    min-height: 665px;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.detail-copy {
    max-width: 735px;
}

.detail-title {
    margin: 19px 0 12px;
    font-family: var(--display);
    font-size: clamp(3.8rem, 7vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .86;
}

.detail-tagline {
    margin: 0;
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .05em;
}

.detail-copy .hero-description {
    margin-top: 23px;
}

.detail-info {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 28px;
    margin-top: 27px;
}

.detail-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-info dt {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.detail-info dd {
    margin: 0;
    color: var(--muted-light);
    font-size: 12px;
}

.detail-rating {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(7, 9, 13, .52);
    backdrop-filter: blur(16px);
}

.detail-rating-number {
    margin: 27px 0 16px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 62px;
    line-height: .8;
}

.detail-rating-number small {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 14px;
}

.detail-rating p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .23em;
    line-height: 1.6;
    text-transform: uppercase;
}

.detail-body {
    padding: 75px 0 110px;
}

.detail-body-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
}

.detail-body h2 {
    margin: 0 0 22px;
    font-family: var(--display);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -.03em;
}

.detail-body p {
    max-width: 640px;
    margin: 0;
    color: var(--muted-light);
    font-size: 14px;
    line-height: 1.9;
}

.detail-cast {
    padding-top: 4px;
}

.cast-line {
    padding: 13px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted-light);
    font-size: 12px;
}

.cast-line span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.episode-list {
    display: grid;
    gap: 10px;
}

.episode {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, .025);
}

.episode-number {
    color: var(--gold);
    font-family: var(--display);
    font-size: 26px;
}

.episode strong {
    display: block;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
}

.episode span {
    color: var(--muted);
    font-size: 10px;
}

.episode .text-link {
    color: var(--muted-light);
}

.search-shell {
    min-height: 470px;
    padding: 90px 0 110px;
}

.search-form-large {
    display: flex;
    max-width: 760px;
    align-items: center;
    gap: 14px;
    margin: 27px 0 50px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(217, 180, 122, .5);
}

.search-form-large svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.search-form-large input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.search-form-large input::placeholder {
    color: #5d5960;
}

.search-count {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12px;
}

.player-shell {
    padding: 58px 0 105px;
}

.player-stage {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        radial-gradient(circle at 50% 45%, rgba(198, 127, 76, .27), transparent 17%),
        linear-gradient(138deg, #33151f, #0b0e13 67%);
    box-shadow: var(--shadow);
}

/* Real demo video player: replace the demo URL with a licensed source per item. */
.player-stage-video {
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 9;
    background: #050608;
}

.player-stage-video::before {
    z-index: 3;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .18;
    pointer-events: none;
    background: repeating-linear-gradient(83deg, transparent 0 49px, rgba(217, 180, 122, .13) 50px 52px);
    transform: none;
}

.player-embed {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: #050608;
}

.player-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.player-video-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5, 6, 8, .58), transparent 19%, transparent 76%, rgba(5, 6, 8, .58));
}

.player-video-topline,
.player-source-link {
    position: absolute;
    z-index: 4;
    top: 20px;
    color: rgba(240, 213, 167, .82);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.player-video-topline {
    left: 24px;
}

.player-source-link {
    right: 24px;
    color: rgba(247, 239, 230, .75);
    letter-spacing: .1em;
    transition: color .2s ease, transform .2s ease;
}

.player-source-link span {
    color: var(--gold-light);
    font-size: 15px;
    margin-left: 6px;
}

.player-source-link:hover {
    color: #fff1d5;
    transform: translateY(-2px);
}

.player-stage::before {
    position: absolute;
    right: 10%;
    bottom: -23%;
    width: 57%;
    height: 80%;
    content: '';
    opacity: .36;
    background: repeating-linear-gradient(83deg, transparent 0 49px, rgba(217, 180, 122, .13) 50px 52px);
    transform: perspective(600px) rotateX(50deg) rotateZ(-8deg);
}

.player-center {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 21px;
    text-align: center;
}

.player-button {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 1px solid rgba(240, 213, 167, .7);
    border-radius: 50%;
    color: #1b1410;
    background: var(--gold-light);
    box-shadow: 0 0 0 12px rgba(217, 180, 122, .08), 0 0 45px rgba(217, 180, 122, .3);
    transition: transform .25s ease, box-shadow .25s ease;
}

.player-button:hover {
    box-shadow: 0 0 0 18px rgba(217, 180, 122, .08), 0 0 65px rgba(217, 180, 122, .42);
    transform: scale(1.05);
}

.player-button::after {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 17px solid currentColor;
    content: '';
    transform: translateX(3px);
}

.player-center h1 {
    margin: 0;
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 400;
}

.player-center p {
    margin: 0;
    color: var(--muted-light);
    font-size: 12px;
}

.player-bar {
    position: absolute;
    right: 28px;
    bottom: 22px;
    left: 28px;
    z-index: 1;
}

.player-track {
    height: 2px;
    background: rgba(255, 255, 255, .22);
}

.player-track span {
    display: block;
    width: 22%;
    height: 100%;
    background: var(--gold);
}

.player-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 13px;
    color: var(--muted-light);
    font-size: 10px;
}

.player-note {
    padding: 25px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.auth-shell {
    display: grid;
    min-height: 690px;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.auth-visual {
    position: relative;
    display: flex;
    min-height: 600px;
    align-items: end;
    overflow: hidden;
    padding: 50px;
    background:
        radial-gradient(circle at 70% 22%, rgba(210, 111, 76, .6), transparent 17%),
        linear-gradient(90deg, rgba(31, 12, 20, .3), rgba(31, 12, 20, .9)),
        linear-gradient(150deg, #3e1824, #11151b 75%);
}

.auth-visual::before {
    position: absolute;
    right: -8%;
    bottom: -12%;
    width: 90%;
    height: 80%;
    content: '';
    background: repeating-linear-gradient(82deg, transparent 0 44px, rgba(217, 180, 122, .11) 45px 47px);
    transform: perspective(500px) rotateX(56deg) rotateZ(-9deg);
}

.auth-quote {
    position: relative;
    z-index: 1;
    max-width: 390px;
}

.auth-quote h1 {
    margin: 20px 0;
    font-family: var(--display);
    font-size: clamp(3.4rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .87;
}

.auth-quote p {
    margin: 0;
    color: var(--muted-light);
    font-size: 13px;
    line-height: 1.7;
}

.auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--surface);
}

.auth-form-wrap {
    width: min(100%, 420px);
}

.auth-form-wrap h2 {
    margin: 16px 0 11px;
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -.04em;
}

.auth-form-wrap > p {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 12px;
}

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 17px;
}

.form-field label {
    color: var(--muted-light);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.form-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    outline: 0;
    color: var(--text);
    background: rgba(255, 255, 255, .035);
    transition: border-color .2s ease, background .2s ease;
}

.form-field input:focus {
    border-color: rgba(217, 180, 122, .7);
    background: rgba(217, 180, 122, .04);
}

.auth-submit {
    width: 100%;
    margin-top: 10px;
}

.auth-footnote {
    margin-top: 22px;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.auth-footnote a {
    color: var(--gold-light);
}

.form-message {
    margin: 0 0 20px;
    padding: 12px 14px;
    border: 1px solid rgba(217, 180, 122, .35);
    color: var(--gold-light);
    background: rgba(217, 180, 122, .08);
    font-size: 11px;
}

.list-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 76px 0 30px;
}

.list-head h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .88;
}

.list-head p {
    max-width: 350px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
}

.list-count {
    color: var(--gold-light);
    font-size: 12px;
}

.site-footer {
    margin-top: 100px;
    border-top: 1px solid var(--line);
    background: #06080b;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr .7fr .7fr 1.2fr;
    gap: 40px;
    padding: 62px 0 55px;
}

.footer-brand p {
    max-width: 250px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column a,
.footer-column p {
    color: var(--muted);
    font-size: 11px;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-newsletter p {
    margin: -1px 0 5px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.newsletter-form input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 11px;
}

.newsletter-form input::placeholder {
    color: #68656a;
}

.icon-button {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--gold);
    background: transparent;
}

.icon-button:hover {
    color: var(--gold-light);
}

.icon-button svg {
    width: 17px;
    height: 17px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0 24px;
    border-top: 1px solid var(--line-soft);
    color: #66656a;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.toast {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    max-width: min(340px, calc(100% - 48px));
    padding: 13px 17px;
    border: 1px solid rgba(217, 180, 122, .4);
    color: var(--gold-light);
    background: rgba(16, 13, 17, .94);
    box-shadow: var(--shadow);
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-media-card].is-hidden {
    display: none;
}

@media (max-width: 1180px) {
    .container {
        width: min(100% - 58px, 1100px);
    }

    .header-inner {
        gap: 22px;
    }

    .main-nav {
        gap: 17px;
    }

    .search-mini {
        width: 185px;
    }

    .media-grid,
    .media-grid.grid-four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .header-inner {
        position: relative;
        min-height: 67px;
    }

    .menu-toggle {
        display: block;
        order: 3;
        margin-left: 2px;
    }

    .main-nav {
        position: fixed;
        z-index: -1;
        top: 67px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 28px;
        background: rgba(8, 10, 14, .98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease;
    }

    .is-menu-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        height: auto;
        padding: 19px 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 14px;
    }

    .nav-link::after {
        right: auto;
        width: 40px;
    }

    .header-actions {
        margin-left: auto;
    }

    .search-mini {
        width: 210px;
    }

    .hero-content,
    .detail-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .hero-content {
        min-height: 720px;
        align-content: center;
    }

    .hero-sidecard {
        display: none;
    }

    .detail-layout {
        min-height: 630px;
    }

    .detail-rating {
        display: none;
    }

    .media-grid,
    .media-grid.grid-four {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 36px);
    }

    .brand-mark {
        font-size: 20px;
    }

    .header-actions .button-ghost {
        display: none;
    }

    .search-mini {
        width: 42px;
        padding: 0;
        justify-content: center;
        border: 0;
        background: transparent;
    }

    .search-mini input {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
    }

    .header-actions .button-gold {
        padding: 0 11px;
        font-size: 9px;
    }

    .hero,
    .hero-content {
        min-height: 660px;
    }

    .hero-content {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .hero-title {
        font-size: clamp(3.45rem, 17vw, 5.3rem);
    }

    .hero-title span {
        font-size: 1.28rem;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .page-hero {
        padding: 76px 0 58px;
    }

    .page-hero h1,
    .detail-title,
    .list-head h1 {
        font-size: clamp(3.25rem, 16vw, 5rem);
    }

    .section {
        padding-top: 65px;
    }

    .section-heading {
        display: block;
        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 2.65rem;
    }

    .section-heading h2::after {
        width: 53px;
        margin-left: 12px;
    }

    .section-heading p {
        margin-top: 14px;
        text-align: left;
    }

    .filter-toolbar {
        align-items: stretch;
    }

    .filter-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .filter-button {
        white-space: nowrap;
    }

    .filter-search {
        width: 100%;
    }

    .media-grid,
    .media-grid.grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 10px;
    }

    .poster-title {
        font-size: 1.1rem;
    }

    .poster-meta {
        gap: 4px;
        font-size: 9px;
    }

    .poster-info {
        right: 11px;
        bottom: 12px;
        left: 11px;
    }

    .genre-pill {
        top: 10px;
        right: auto;
        left: 10px;
        padding: 5px 6px;
        font-size: 7px;
    }

    .favorite-toggle {
        top: 45px;
        right: 10px;
        opacity: 1;
        transform: none;
    }

    .card-under {
        display: block;
        line-height: 1.4;
    }

    .card-under .text-link {
        display: block;
        margin-top: 5px;
    }

    .genre-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .genre-card {
        min-height: 150px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 65px;
    }

    .detail-hero {
        min-height: 620px;
    }

    .detail-layout {
        min-height: 620px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .detail-info {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .detail-body {
        padding: 55px 0 75px;
    }

    .detail-body-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .detail-body h2 {
        font-size: 2.45rem;
    }

    .episode {
        grid-template-columns: 36px 1fr;
    }

    .episode .text-link {
        grid-column: 2;
    }

    .search-shell {
        padding: 65px 0 80px;
    }

    .search-form-large {
        margin-bottom: 34px;
    }

    .player-shell {
        padding: 25px 0 70px;
    }

    .player-stage {
        min-height: 430px;
    }

    .player-stage-video {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .player-video-topline,
    .player-source-link {
        top: 12px;
        font-size: 8px;
    }

    .player-video-topline {
        left: 13px;
    }

    .player-source-link {
        right: 13px;
    }

    .player-center h1 {
        max-width: 250px;
        font-size: 2rem;
    }

    .player-bar {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .auth-shell {
        display: block;
        min-height: 0;
    }

    .auth-visual {
        min-height: 350px;
        padding: 34px 20px;
    }

    .auth-panel {
        padding: 48px 20px 65px;
    }

    .list-head {
        display: block;
        padding: 59px 0 25px;
    }

    .list-head p {
        margin-top: 16px;
        text-align: left;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
        padding: 48px 0 40px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        line-height: 1.5;
    }
}

@media (max-width: 900px) {
    .collections-hero,
    .collections-hero-inner {
        min-height: 560px;
    }

    .collections-hero-inner {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 28px;
        padding-top: 72px;
        padding-bottom: 55px;
    }

    .curator-note {
        padding: 23px 20px;
    }

    .curator-note strong {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .collections-hero,
    .collections-hero-inner {
        min-height: 610px;
    }

    .collections-hero::before {
        background:
            linear-gradient(180deg, rgba(7, 8, 12, .15), rgba(7, 8, 12, .7) 62%, rgba(7, 8, 12, .98) 100%),
            url('../images/hero-last-horizon.webp') 44% center / cover no-repeat;
    }

    .collections-hero-inner {
        display: block;
        padding-top: 76px;
        padding-bottom: 45px;
    }

    .collections-hero h1 {
        font-size: clamp(3.55rem, 17vw, 5.2rem);
    }

    .collections-hero p {
        font-size: 13px;
    }

    .collections-hero-meta {
        flex-wrap: wrap;
        gap: 8px 11px;
        margin-top: 25px;
        font-size: 8px;
    }

    .curator-note {
        max-width: 310px;
        margin-top: 48px;
    }

    .collections-section {
        padding-top: 70px;
    }

    .collection-card-premium {
        min-height: 340px;
    }

    .shortlist-section {
        padding-top: 75px;
    }

    .shortlist-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 28px;
    }

    .shortlist-intro p {
        text-align: left;
    }
}

/* Oyuncular: editorial cast discovery page. */
.actors-hero {
    min-height: 535px;
    padding: 0;
    border-bottom-color: rgba(217, 180, 122, .16);
    background: #090b10;
    isolation: isolate;
}

.actors-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, rgba(7, 8, 12, .08) 0%, rgba(7, 8, 12, .2) 39%, rgba(7, 8, 12, .8) 80%, rgba(7, 8, 12, .97) 100%),
        linear-gradient(180deg, rgba(6, 7, 10, .1), rgba(6, 7, 10, .7)),
        url('../images/actors-hero.webp') center / cover no-repeat;
}

.actors-hero::after {
    right: 10%;
    bottom: -94px;
    width: 340px;
    height: 340px;
    border-color: rgba(217, 180, 122, .16);
    box-shadow: 0 0 0 34px rgba(217, 180, 122, .025), 0 0 0 72px rgba(217, 180, 122, .016);
}

.actors-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 535px;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: end;
    gap: 70px;
    padding-top: 82px;
    padding-bottom: 66px;
}

.actors-hero-copy {
    max-width: 630px;
}

.actors-hero h1 {
    max-width: 650px;
    margin: 22px 0 20px;
    font-size: clamp(4rem, 7vw, 6.5rem);
    letter-spacing: -.07em;
    line-height: .83;
}

.actors-hero h1 span {
    color: var(--gold-light);
}

.actors-hero p {
    max-width: 500px;
    color: rgba(235, 228, 218, .78);
    font-size: 15px;
    line-height: 1.75;
}

.actors-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.actors-hero-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 9px rgba(217, 180, 122, .5);
}

.actors-hero-card {
    padding: 28px 28px 25px;
    border: 1px solid rgba(240, 213, 167, .5);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(14, 16, 20, .72), rgba(8, 10, 14, .62));
    box-shadow: 0 24px 58px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .035);
    backdrop-filter: blur(11px);
}

.actors-hero-card-label,
.actors-hero-card-word {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .27em;
}

.actors-hero-card strong {
    display: block;
    margin: 19px 0 3px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 6.3rem;
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .78;
}

.actors-hero-card-word {
    color: var(--muted-light);
    letter-spacing: .34em;
}

.actors-hero-card-rule {
    height: 1px;
    margin: 24px 0 19px;
    background: linear-gradient(90deg, var(--gold), rgba(217, 180, 122, .12));
}

.actors-hero-card p {
    margin: 0;
    color: var(--muted-light);
    font-size: 12px;
    line-height: 1.7;
}

.actors-section {
    padding-top: 103px;
}

.actors-heading {
    margin-bottom: 30px;
}

.actors-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
    padding: 17px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.actors-toolbar-copy {
    display: flex;
    align-items: baseline;
    gap: 17px;
}

.actors-toolbar-kicker {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.actors-toolbar-title {
    color: var(--muted-light);
    font-family: var(--display);
    font-size: 1.55rem;
}

.actor-search {
    display: flex;
    width: min(300px, 100%);
    height: 42px;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: var(--muted-light);
    background: rgba(255, 255, 255, .025);
    transition: border-color .2s ease, background .2s ease;
}

.actor-search:focus-within {
    border-color: rgba(240, 213, 167, .62);
    background: rgba(217, 180, 122, .045);
}

.actor-search svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.actor-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 12px;
}

.actor-search input::placeholder {
    color: var(--muted);
}

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

.actor-card-premium .poster {
    min-height: 0;
    aspect-ratio: 1.72 / 1;
    border-radius: 9px;
    box-shadow: 0 17px 38px rgba(0, 0, 0, .3);
}

.actor-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.82) contrast(1.04) brightness(.88);
    transition: transform .5s ease, filter .5s ease;
}

.actor-card-premium:hover .actor-image {
    filter: saturate(.95) contrast(1.05) brightness(.96);
    transform: scale(1.045);
}

.actor-card-premium .poster::after {
    background: linear-gradient(180deg, transparent 22%, rgba(3, 4, 6, .08) 42%, rgba(3, 4, 6, .95) 100%);
}

.actor-card-premium .poster-art::before {
    top: 19%;
    left: calc(50% - 55px);
    width: 110px;
    height: 110px;
    border-color: rgba(255, 239, 201, .48);
    box-shadow: 0 0 35px rgba(240, 213, 167, .08);
}

.actor-card-premium .poster-art::after {
    right: 15%;
    bottom: 37%;
    left: 15%;
    background: linear-gradient(90deg, transparent, rgba(240, 213, 167, .48), transparent);
    transform: rotate(0);
}

.actor-card-premium .poster-art {
    z-index: 1;
    pointer-events: none;
}

.actor-card-index {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 21px;
    color: rgba(240, 213, 167, .75);
    font-family: var(--display);
    font-size: 1.8rem;
    line-height: 1;
}

.actor-card-label {
    position: absolute;
    z-index: 2;
    top: 25px;
    right: 21px;
    color: rgba(255, 239, 201, .65);
    font-size: 8px;
    letter-spacing: .2em;
}

.actor-card-premium .actor-initials {
    top: 27%;
    color: rgba(255, 243, 214, .86);
    font-size: 58px;
    letter-spacing: .06em;
    text-shadow: 0 5px 24px rgba(0, 0, 0, .35);
}

.actor-card-premium .actor-card-index {
    top: 20px;
    right: 21px;
    left: auto;
    color: rgba(240, 213, 167, .65);
}

.actor-card-premium .actor-card-label {
    top: 51px;
    right: 21px;
    color: rgba(255, 239, 201, .72);
}

.actor-card-premium .poster-info {
    right: 155px;
    bottom: 21px;
    left: 21px;
}

.actor-card-premium .poster-title {
    font-size: clamp(1.3rem, 1.8vw, 1.65rem);
}

.actor-card-premium .actor-role {
    margin-top: 7px;
    color: rgba(239, 229, 216, .72);
    font-size: 10px;
    letter-spacing: .05em;
}

.actor-card-premium .actor-role i {
    margin: 0 5px;
    color: var(--gold-light);
    font-style: normal;
}

.actor-view {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    height: 40px;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border: 1px solid rgba(240, 213, 167, .8);
    border-radius: 7px;
    color: var(--gold-light);
    background: rgba(6, 8, 11, .42);
    font-size: 10px;
    letter-spacing: .11em;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.actor-view span {
    font-size: 20px;
    line-height: 1;
}

.actor-view:hover {
    color: #fff2d8;
    background: rgba(217, 180, 122, .16);
    box-shadow: 0 0 18px rgba(217, 180, 122, .18);
    transform: translateY(-2px);
}

.actor-card-premium .card-under {
    display: none;
}

.actor-card-premium:hover .actor-card-index {
    color: var(--gold-light);
}

@media (max-width: 900px) {
    .actors-hero,
    .actors-hero-inner {
        min-height: 540px;
    }

    .actors-hero-inner {
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 30px;
        padding-top: 73px;
        padding-bottom: 54px;
    }

    .actors-hero-card {
        padding: 23px 20px;
    }

    .actors-hero-card strong {
        font-size: 5.2rem;
    }
}

@media (max-width: 640px) {
    .actors-hero,
    .actors-hero-inner {
        min-height: 650px;
    }

    .actors-hero::before {
        background:
            linear-gradient(180deg, rgba(7, 8, 12, .12), rgba(7, 8, 12, .72) 62%, rgba(7, 8, 12, .98) 100%),
            url('../images/actors-hero.webp') 45% center / cover no-repeat;
    }

    .actors-hero-inner {
        display: block;
        padding-top: 75px;
        padding-bottom: 42px;
    }

    .actors-hero h1 {
        font-size: clamp(3.55rem, 17vw, 5.2rem);
    }

    .actors-hero p {
        font-size: 13px;
    }

    .actors-hero-meta {
        flex-wrap: wrap;
        gap: 8px 11px;
        margin-top: 24px;
        font-size: 8px;
    }

    .actors-hero-card {
        max-width: 310px;
        margin-top: 45px;
    }

    .actors-section {
        padding-top: 70px;
    }

    .actors-toolbar {
        display: block;
        margin-bottom: 28px;
    }

    .actors-toolbar-copy {
        display: block;
    }

    .actors-toolbar-title {
        display: block;
        margin-top: 8px;
    }

    .actor-search {
        width: 100%;
        margin-top: 17px;
    }

    .actors-grid {
        gap: 22px 10px;
    }

    .actor-card-premium .poster-info {
        right: 12px;
        bottom: 13px;
        left: 12px;
    }

    .actor-card-index {
        top: 14px;
        left: 13px;
        font-size: 1.35rem;
    }

    .actor-card-label {
        top: 17px;
        right: 13px;
        font-size: 6px;
    }

    .actor-card-premium .actor-initials {
        font-size: 39px;
    }

    .actor-card-premium .poster-art::before {
        left: calc(50% - 36px);
        width: 72px;
        height: 72px;
    }

    .actor-card-premium .poster-title {
        font-size: 1.1rem;
    }

    .actor-card-premium .actor-role {
        font-size: 8px;
    }

    .actor-card-premium .card-under {
        display: block;
        font-size: 9px;
        line-height: 1.4;
    }

    .actor-card-premium .card-under .text-link {
        display: block;
        margin-top: 5px;
    }
}

/* Featured cast: wider editorial cards below the main actor grid. */
.featured-actors-section {
    padding-top: 105px;
    padding-bottom: 112px;
    background: linear-gradient(180deg, transparent, rgba(29, 13, 21, .18));
}

.featured-actors-heading {
    margin-bottom: 30px;
}

.featured-actor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.featured-actor-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 9px;
    background: var(--surface);
    isolation: isolate;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.featured-actor-card img,
.featured-actor-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.featured-actor-card img {
    z-index: -2;
    object-fit: cover;
    object-position: 28% center;
    filter: saturate(.8) brightness(.84);
    transition: filter .45s ease, transform .45s ease;
}

.featured-actor-overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 6, 9, .05) 0%, rgba(5, 6, 9, .24) 25%, rgba(5, 6, 9, .94) 72%, rgba(5, 6, 9, .98) 100%);
}

.featured-actor-card:hover {
    border-color: rgba(240, 213, 167, .72);
    box-shadow: 0 0 26px rgba(212, 175, 90, .17), 0 20px 40px rgba(0, 0, 0, .3);
    transform: translateY(-4px);
}

.featured-actor-card:hover img {
    filter: saturate(.96) brightness(.96);
    transform: scale(1.04);
}

.featured-actor-copy {
    position: absolute;
    right: 30px;
    bottom: 32px;
    width: 48%;
}

.featured-actor-kicker {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: .27em;
}

.featured-actor-copy h3 {
    margin: 17px 0 10px;
    color: var(--text);
    font-family: var(--display);
    font-size: 2.45rem;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .9;
}

.featured-actor-copy p {
    margin: 0;
    color: var(--muted-light);
    font-size: 11px;
    letter-spacing: .1em;
    line-height: 1.65;
    text-transform: uppercase;
}

.featured-actor-arrow {
    position: absolute;
    right: 25px;
    top: 25px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(240, 213, 167, .65);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 23px;
    transition: background .2s ease, transform .2s ease;
}

.featured-actor-card:hover .featured-actor-arrow {
    background: rgba(217, 180, 122, .14);
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .featured-actors-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .featured-actor-grid {
        grid-template-columns: 1fr;
    }

    .featured-actor-card {
        min-height: 245px;
    }

    .featured-actor-copy {
        right: 20px;
        bottom: 22px;
        width: 53%;
    }

    .featured-actor-copy h3 {
        margin-top: 12px;
        font-size: 2rem;
    }

    .featured-actor-arrow {
        top: 17px;
        right: 17px;
        width: 34px;
        height: 34px;
        font-size: 19px;
    }
}

/* Premium series catalog page. */
.series-hero {
    min-height: 590px;
    padding: 0;
    border-bottom-color: rgba(240, 213, 167, .2);
    background:
        linear-gradient(90deg, rgba(7, 8, 12, .96) 0%, rgba(14, 9, 15, .82) 30%, rgba(9, 10, 14, .3) 68%, rgba(7, 8, 11, .7) 100%),
        linear-gradient(180deg, rgba(5, 7, 10, .3), rgba(5, 7, 10, .7)),
        url('../images/series-hero.webp') center center / cover no-repeat;
}

.series-hero::before {
    position: absolute;
    inset: 0;
    content: '';
    background: radial-gradient(circle at 72% 28%, rgba(190, 91, 79, .13), transparent 23rem);
    pointer-events: none;
}

.series-hero::after {
    right: 8%;
    bottom: -90px;
    width: 325px;
    height: 325px;
    border-color: rgba(240, 213, 167, .2);
    box-shadow: 0 0 0 34px rgba(240, 213, 167, .032), 0 0 0 72px rgba(240, 213, 167, .018);
}

.series-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 590px;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    grid-template-rows: 1fr auto;
    align-items: end;
    column-gap: 54px;
    padding-top: 122px;
}

.series-hero-copy {
    align-self: end;
    padding-bottom: 25px;
}

.series-hero-copy .eyebrow {
    display: inline-flex;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .34em;
}

.series-hero-copy h1 {
    max-width: 800px;
    margin: 20px 0 15px;
    color: #f3e7d7;
    font-size: clamp(4.1rem, 8vw, 7rem);
    letter-spacing: .02em;
    line-height: .8;
    text-transform: uppercase;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .36);
}

.series-hero-copy p {
    max-width: 535px;
    color: rgba(247, 239, 230, .8);
    font-size: 18px;
    letter-spacing: .01em;
}

.series-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-top: 23px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.series-hero-meta i {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.series-hero-note {
    display: flex;
    align-self: center;
    flex-direction: column;
    gap: 8px;
    padding: 18px 0 18px 25px;
    border-left: 1px solid rgba(240, 213, 167, .5);
    color: rgba(240, 213, 167, .86);
    font-size: 9px;
    letter-spacing: .36em;
    line-height: 1.75;
}

.series-hero-note i {
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 13px;
    background: var(--gold);
}

.series-filter-panel {
    display: grid;
    min-height: 112px;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 28px;
    padding: 0 17px 0 22px;
    border: 1px solid rgba(240, 213, 167, .62);
    border-radius: 5px;
    background: rgba(5, 7, 10, .56);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .25), inset 0 0 26px rgba(240, 213, 167, .03);
    backdrop-filter: blur(13px);
}

.series-filter-panel .series-search {
    display: flex;
    width: auto;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 0;
    border: 0;
}

.series-search svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--gold-light);
    stroke-linecap: round;
    stroke-width: 1.4;
}

.series-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font: inherit;
    font-size: 12px;
    letter-spacing: .05em;
}

.series-search input::placeholder {
    color: rgba(247, 239, 230, .6);
}

.series-search-count {
    padding-left: 20px;
    border-left: 1px solid rgba(240, 213, 167, .25);
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .12em;
    white-space: nowrap;
}

.series-filter-row {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
    padding: 10px 0 11px;
    border-top: 1px solid rgba(240, 213, 167, .18);
}

.series-filter-panel .filter-list {
    gap: 9px;
    min-width: 0;
}

.series-filter-panel .filter-button {
    min-height: 35px;
    padding: 8px 18px;
    border: 1px solid rgba(240, 213, 167, .52);
    border-radius: 6px;
    color: rgba(247, 239, 230, .78);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.series-filter-panel .filter-button:hover,
.series-filter-panel .filter-button.is-active {
    border-color: var(--gold-light);
    color: #171016;
    background: linear-gradient(135deg, #f0c982, #d9a95d);
    box-shadow: 0 4px 18px rgba(212, 175, 90, .2);
}

.series-sort-note {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    min-height: 35px;
    padding: 0 15px;
    border: 1px solid rgba(240, 213, 167, .52);
    border-radius: 6px;
    color: rgba(247, 239, 230, .78);
    font-size: 9px;
    letter-spacing: .14em;
    white-space: nowrap;
}

.series-sort-note > span {
    color: var(--gold-light);
    font-size: 18px;
    line-height: 1;
}

.series-sort-note b {
    margin-left: 8px;
    color: var(--gold-light);
    font-size: 15px;
    font-weight: 400;
}

.series-catalog-section {
    padding-top: 93px;
}

.series-catalog-heading {
    margin-bottom: 33px;
}

.series-catalog-heading h2 {
    letter-spacing: .12em;
}

.series-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 14px;
}

.series-grid .poster {
    aspect-ratio: 1.08 / 1;
    border-radius: 7px;
}

.series-grid .poster-image {
    filter: saturate(.82) brightness(.78);
    object-position: center 68%;
    transition: filter .45s ease, transform .5s ease;
}

.series-grid .poster-has-image::before {
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 6, 9, .1), transparent 36%, rgba(3, 4, 6, .86) 100%);
}

.series-grid .poster-title {
    font-size: clamp(1.25rem, 1.8vw, 1.72rem);
}

.series-grid .poster-meta {
    margin-top: 8px;
    color: rgba(244, 235, 226, .8);
}

.series-grid .genre-pill {
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-color: rgba(240, 213, 167, .65);
    color: rgba(255, 245, 230, .9);
}

.series-grid .favorite-toggle {
    top: 14px;
    right: 14px;
}

.series-grid .media-card:hover .poster-image {
    filter: saturate(1) brightness(.92);
    transform: scale(1.05);
}

.series-editorial-section {
    padding-top: 110px;
    padding-bottom: 116px;
}

.series-editorial-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 72px;
    padding: 53px 55px;
    border-top: 1px solid rgba(240, 213, 167, .56);
    border-bottom: 1px solid rgba(240, 213, 167, .2);
    background: linear-gradient(100deg, rgba(83, 28, 40, .17), rgba(13, 16, 21, .12));
}

.series-editorial-card h2 {
    margin: 15px 0 0;
    color: var(--text);
    font-family: var(--display);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: .83;
}

.series-editorial-copy {
    max-width: 480px;
}

.series-editorial-copy p {
    margin: 0 0 25px;
    color: var(--muted-light);
    font-size: 14px;
    line-height: 1.85;
}

.series-editorial-copy .button {
    min-height: 45px;
}

@media (max-width: 1060px) {
    .series-hero-inner {
        column-gap: 30px;
    }

    .series-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .series-filter-panel .filter-button {
        padding-right: 13px;
        padding-left: 13px;
    }
}

@media (max-width: 720px) {
    .series-hero {
        min-height: 650px;
        background-position: 61% center;
    }

    .series-hero-inner {
        min-height: 650px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto;
        padding-top: 110px;
    }

    .series-hero-copy {
        padding-bottom: 10px;
    }

    .series-hero-copy h1 {
        margin-top: 18px;
        font-size: clamp(3.6rem, 15vw, 6rem);
    }

    .series-hero-copy p {
        font-size: 15px;
    }

    .series-hero-note {
        align-self: end;
        margin: 0 0 20px;
        padding: 12px 0 12px 17px;
    }

    .series-filter-panel {
        grid-template-columns: minmax(0, 1fr) auto;
        margin-bottom: 20px;
        padding-left: 16px;
    }

    .series-filter-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .series-filter-panel .filter-list {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .series-filter-panel .filter-list::-webkit-scrollbar {
        display: none;
    }

    .series-sort-note {
        display: none;
    }

    .series-catalog-section {
        padding-top: 76px;
    }

    .series-catalog-heading {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }

    .series-catalog-heading p {
        text-align: left;
    }

    .series-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .series-grid .poster-title {
        font-size: 1.18rem;
    }

    .series-grid .poster-meta {
        gap: 4px;
        font-size: 8px;
    }

    .series-grid .genre-pill {
        top: 10px;
        left: 10px;
        padding: 5px 7px;
        font-size: 7px;
    }

    .series-grid .favorite-toggle {
        top: 10px;
        right: 10px;
        opacity: 1;
        transform: none;
    }

    .series-editorial-section {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .series-editorial-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 24px 40px;
    }
}

@media (max-width: 430px) {
    .series-search-count {
        display: none;
    }

    .series-filter-panel {
        padding-right: 12px;
    }

    .series-grid .poster-title {
        font-size: 1.04rem;
    }

    .series-grid .poster-meta {
        flex-wrap: nowrap;
        font-size: 7px;
        white-space: nowrap;
    }
}

/* Premium film archive page. */
.films-hero {
    background:
        linear-gradient(90deg, rgba(8, 6, 10, .96) 0%, rgba(26, 10, 16, .82) 31%, rgba(12, 11, 14, .28) 68%, rgba(7, 8, 11, .72) 100%),
        linear-gradient(180deg, rgba(5, 7, 10, .2), rgba(5, 7, 10, .68)),
        url('../images/hero-last-horizon.webp') center 44% / cover no-repeat;
}

.films-hero::before {
    background: radial-gradient(circle at 72% 24%, rgba(212, 91, 71, .18), transparent 24rem);
}

.films-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px 15px;
}

.films-grid .poster {
    aspect-ratio: 270 / 380;
}

.films-grid .poster-image {
    filter: saturate(.86) brightness(.82);
    transition: filter .45s ease, transform .5s ease;
}

.films-grid .media-card:hover .poster-image {
    filter: saturate(1) brightness(.95);
    transform: scale(1.045);
}

.films-grid .poster-title {
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

@media (max-width: 1060px) {
    .films-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .films-hero {
        background-position: 56% center;
    }

    .films-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    .films-grid .poster-title {
        font-size: 1.08rem;
    }

    .films-grid .poster-meta {
        gap: 4px;
        font-size: 8px;
    }
}

/* Premium genre discovery page. */
.genres-hero {
    min-height: 585px;
    padding: 0;
    border-bottom-color: rgba(240, 213, 167, .2);
    background:
        linear-gradient(90deg, rgba(8, 7, 11, .94) 0%, rgba(17, 10, 18, .78) 36%, rgba(11, 12, 17, .28) 72%, rgba(7, 9, 12, .68) 100%),
        linear-gradient(180deg, rgba(7, 8, 12, .28), rgba(7, 8, 12, .64)),
        url('../images/genres-hero.webp') center 38% / cover no-repeat;
}

.genres-hero::after {
    right: 8%;
    bottom: -85px;
    width: 320px;
    height: 320px;
    border-color: rgba(240, 213, 167, .22);
    box-shadow: 0 0 0 34px rgba(240, 213, 167, .035), 0 0 0 72px rgba(240, 213, 167, .018);
}

.genres-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 585px;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    grid-template-rows: 1fr auto;
    align-items: end;
    column-gap: 52px;
    padding-top: 122px;
}

.genres-hero-copy {
    align-self: end;
    padding-bottom: 25px;
}

.genres-hero-copy .eyebrow {
    display: inline-flex;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .34em;
}

.genres-hero-copy h1 {
    max-width: none;
    margin: 22px 0 16px;
    color: #f3e7d7;
    font-size: clamp(4.5rem, 9vw, 7.5rem);
    letter-spacing: .03em;
    line-height: .78;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .36);
}

.genres-hero-copy p {
    max-width: 520px;
    color: rgba(247, 239, 230, .8);
    font-size: 18px;
    letter-spacing: .02em;
}

.genres-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.genres-hero-meta i,
.genre-editorial-copy i {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.genres-hero-note {
    display: flex;
    align-self: center;
    flex-direction: column;
    gap: 8px;
    padding: 18px 0 18px 25px;
    border-left: 1px solid rgba(240, 213, 167, .5);
    color: rgba(240, 213, 167, .86);
    font-size: 9px;
    letter-spacing: .38em;
    line-height: 1.75;
}

.genres-hero-note i {
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 13px;
    background: var(--gold);
}

.genre-search-wrap {
    display: flex;
    min-height: 60px;
    grid-column: 1 / -1;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
    padding: 0 19px 0 22px;
    border: 1px solid rgba(240, 213, 167, .58);
    border-radius: 4px;
    background: rgba(5, 7, 10, .48);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24), inset 0 0 26px rgba(240, 213, 167, .035);
    backdrop-filter: blur(12px);
}

.genre-search {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 13px;
}

.genre-search svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--gold-light);
    stroke-linecap: round;
    stroke-width: 1.4;
}

.genre-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 12px;
    letter-spacing: .06em;
}

.genre-search input::placeholder {
    color: rgba(247, 239, 230, .56);
}

.genre-search-count {
    padding-left: 20px;
    border-left: 1px solid rgba(240, 213, 167, .25);
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .2em;
    white-space: nowrap;
    text-transform: uppercase;
}

.genres-section {
    padding-top: 104px;
}

.genres-heading {
    margin-bottom: 35px;
}

.genres-heading h2,
.genre-featured-heading h2 {
    letter-spacing: .12em;
}

.genres-heading p {
    max-width: 390px;
}

.genre-grid-premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.genre-card.genre-card-premium {
    display: block;
    min-height: 268px;
    padding: 0;
    border-color: rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: #11151b;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .14);
    transform: translateY(0);
}

.genre-card.genre-card-premium::before {
    z-index: -1;
    background: linear-gradient(135deg, rgba(12, 16, 21, .12), rgba(112, 54, 55, .2));
}

.genre-card.genre-card-premium::after {
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 7, 10, .02) 18%, rgba(5, 7, 10, .12) 38%, rgba(5, 7, 10, .96) 100%);
}

.genre-image {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78) brightness(.78);
    transition: filter .4s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
}

.genre-card.genre-card-premium:hover {
    border-color: rgba(240, 213, 167, .72);
    box-shadow: 0 0 24px rgba(212, 175, 90, .22), 0 22px 38px rgba(0, 0, 0, .28);
    transform: translateY(-5px) scale(1.015);
}

.genre-card.genre-card-premium:hover .genre-image {
    filter: saturate(.98) brightness(.92);
    transform: scale(1.07);
}

.genre-card.genre-card-premium .genre-card-arrow {
    position: absolute;
    z-index: 2;
    top: 17px;
    right: 17px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(240, 213, 167, .68);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 18px;
    line-height: 1;
    transition: background .25s ease, transform .25s ease;
}

.genre-card.genre-card-premium:hover .genre-card-arrow {
    background: rgba(240, 213, 167, .15);
    transform: translateX(3px);
}

.genre-card-content {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 19px;
    left: 20px;
}

.genre-card.genre-card-premium .genre-card-count {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.genre-card.genre-card-premium h3 {
    margin: 0;
    color: #f4e9dc;
    font-size: clamp(1.8rem, 2.3vw, 2.35rem);
    letter-spacing: -.035em;
    line-height: .9;
}

.genre-card.genre-card-premium p {
    position: static;
    margin: 10px 0 0;
    color: rgba(247, 239, 230, .68);
    font-size: 9px;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.genres-section .empty-state {
    margin-top: 24px;
}

.genre-featured-section {
    padding-top: 108px;
    background: linear-gradient(180deg, transparent, rgba(35, 14, 22, .14));
}

.genre-featured-heading {
    margin-bottom: 31px;
}

.genre-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.genre-featured-card {
    position: relative;
    min-height: 238px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: var(--surface);
    isolation: isolate;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.genre-featured-card img,
.genre-featured-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.genre-featured-card img {
    z-index: -2;
    object-fit: cover;
    filter: saturate(.78) brightness(.72);
    transition: filter .45s ease, transform .55s ease;
}

.genre-featured-overlay {
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 10, 14, .08), rgba(8, 10, 14, .9) 82%);
}

.genre-featured-card:hover {
    border-color: rgba(240, 213, 167, .68);
    box-shadow: 0 0 25px rgba(212, 175, 90, .17), 0 18px 32px rgba(0, 0, 0, .24);
    transform: translateY(-4px);
}

.genre-featured-card:hover img {
    filter: saturate(.98) brightness(.88);
    transform: scale(1.06);
}

.genre-featured-copy {
    position: absolute;
    right: 22px;
    bottom: 23px;
    left: 22px;
}

.genre-featured-copy > span {
    color: var(--gold-light);
    font-size: 8px;
    letter-spacing: .23em;
    text-transform: uppercase;
}

.genre-featured-copy h3 {
    margin: 11px 0 12px;
    color: var(--text);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .9;
}

.genre-featured-copy i {
    display: block;
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.genre-featured-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(240, 213, 167, .62);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 18px;
    transition: background .2s ease, transform .2s ease;
}

.genre-featured-card:hover .genre-featured-arrow {
    background: rgba(240, 213, 167, .14);
    transform: translateX(3px);
}

.genre-editorial-section {
    padding-top: 110px;
    padding-bottom: 116px;
}

.genre-editorial-card {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 70px;
    padding: 53px 55px;
    border-top: 1px solid rgba(240, 213, 167, .56);
    border-bottom: 1px solid rgba(240, 213, 167, .2);
    background: linear-gradient(100deg, rgba(83, 28, 40, .17), rgba(13, 16, 21, .12));
}

.genre-editorial-card h2 {
    margin: 15px 0 0;
    color: var(--text);
    font-family: var(--display);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: .83;
}

.genre-editorial-copy {
    max-width: 480px;
}

.genre-editorial-copy p {
    margin: 0 0 25px;
    color: var(--muted-light);
    font-size: 14px;
    line-height: 1.85;
}

.genre-editorial-copy .button {
    min-height: 45px;
}

@media (max-width: 1060px) {
    .genres-hero-inner {
        column-gap: 30px;
    }

    .genre-grid-premium {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .genre-featured-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .genres-hero {
        min-height: 620px;
        background-position: 59% center;
    }

    .genres-hero-inner {
        min-height: 620px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto;
        padding-top: 110px;
    }

    .genres-hero-copy {
        padding-bottom: 10px;
    }

    .genres-hero-copy h1 {
        margin-top: 18px;
        font-size: clamp(3.8rem, 16vw, 6rem);
    }

    .genres-hero-copy p {
        font-size: 15px;
    }

    .genres-hero-note {
        align-self: end;
        margin: 0 0 20px;
        padding: 12px 0 12px 17px;
    }

    .genre-search-wrap {
        margin-bottom: 20px;
    }

    .genres-section,
    .genre-featured-section {
        padding-top: 77px;
    }

    .genres-heading,
    .genre-featured-heading {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }

    .genres-heading p {
        max-width: 500px;
        text-align: left;
    }

    .genre-grid-premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .genre-card.genre-card-premium {
        min-height: 205px;
    }

    .genre-card-content {
        right: 13px;
        bottom: 15px;
        left: 13px;
    }

    .genre-card.genre-card-premium h3 {
        font-size: 1.55rem;
    }

    .genre-card.genre-card-premium p {
        font-size: 7px;
    }

    .genre-card-arrow,
    .genre-featured-arrow {
        top: 12px;
        right: 12px;
        width: 29px;
        height: 29px;
        font-size: 15px;
    }

    .genre-featured-grid {
        grid-template-columns: 1fr;
    }

    .genre-featured-card:last-child {
        grid-column: auto;
    }

    .genre-editorial-section {
        padding-top: 80px;
        padding-bottom: 85px;
    }

    .genre-editorial-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 24px 40px;
    }
}

@media (max-width: 430px) {
    .genre-search-count {
        display: none;
    }

    .genre-search-wrap {
        padding-right: 15px;
        padding-left: 16px;
    }

    .genre-card.genre-card-premium {
        min-height: 190px;
    }

    .genre-card.genre-card-premium .genre-card-count {
        margin-bottom: 7px;
        font-size: 7px;
    }

    .genre-card.genre-card-premium h3 {
        font-size: 1.35rem;
    }

    .genre-card.genre-card-premium p {
        max-width: 120px;
        line-height: 1.25;
    }
}

/* Auth page keeps the global CineVault navigation visible over the cinema scene. */
.auth-topbar {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    background: rgba(7, 9, 13, .62);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
    backdrop-filter: blur(17px);
}

.auth-topbar-inner {
    display: flex;
    width: min(1360px, calc(100% - 96px));
    min-height: 74px;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
}

.auth-brand {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    color: var(--gold-light);
    line-height: 1;
}

.auth-brand-mark {
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: .18em;
}

.auth-brand-sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .45em;
    text-transform: uppercase;
}

.auth-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 25px;
    margin-right: auto;
}

.auth-nav-link {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: center;
    color: var(--muted-light);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.auth-nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: '';
    background: var(--gold);
    opacity: 0;
    transform: scaleX(.25);
    transition: opacity .2s ease, transform .2s ease;
}

.auth-nav-link:hover,
.auth-nav-link:focus-visible {
    color: var(--gold-light);
}

.auth-nav-link:hover::after,
.auth-nav-link:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-search {
    display: flex;
    width: 268px;
    height: 40px;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--muted-light);
    background: rgba(5, 7, 10, .42);
    transition: border-color .2s ease, background .2s ease;
}

.auth-search:focus-within {
    border-color: rgba(240, 213, 167, .65);
    background: rgba(5, 7, 10, .7);
}

.auth-search svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.auth-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 12px;
}

.auth-search input::placeholder {
    color: var(--muted);
}

.auth-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(240, 213, 167, .35);
    border-radius: 50%;
    background: rgba(7, 9, 13, .45);
}

.auth-menu-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    margin: 3px 0;
    background: var(--gold-light);
    transition: transform .2s ease;
}

.auth-page.is-auth-menu-open .auth-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.auth-page.is-auth-menu-open .auth-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 1180px) and (min-width: 901px) {
    .auth-topbar-inner {
        width: min(100% - 58px, 1100px);
        gap: 18px;
    }

    .auth-nav {
        gap: 14px;
    }

    .auth-nav-link {
        font-size: 10px;
    }

    .auth-search {
        width: 190px;
    }

    .auth-actions {
        gap: 7px;
    }
}

@media (max-width: 900px) {
    .auth-topbar-inner {
        width: calc(100% - 36px);
        min-height: 68px;
        gap: 12px;
    }

    .auth-brand-mark {
        font-size: 20px;
    }

    .auth-nav {
        position: fixed;
        z-index: 45;
        top: 68px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 22px 28px;
        background: rgba(7, 9, 13, .97);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .auth-page.is-auth-menu-open .auth-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .auth-nav-link {
        height: auto;
        padding: 18px 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 13px;
    }

    .auth-nav-link::after {
        right: auto;
        width: 44px;
    }

    .auth-actions {
        margin-left: auto;
    }

    .auth-search {
        width: 40px;
        padding: 0;
        justify-content: center;
        border: 0;
        background: transparent;
    }

    .auth-search input {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
    }

    .auth-menu-toggle {
        display: grid;
    }
}

/* Premium closing frame: the shared footer ends every CineVault page with a quiet signature. */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 134px;
    border-top: 0;
    background: linear-gradient(180deg, #0c0c10 0%, #07080b 72%, #050609 100%);
}

.site-footer::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: '';
    background:
        radial-gradient(circle at 11% 13%, rgba(126, 43, 57, .24), transparent 24rem),
        radial-gradient(circle at 86% 45%, rgba(195, 148, 75, .08), transparent 23rem);
    pointer-events: none;
}

.site-footer::after {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 44%;
    content: '';
    background: repeating-linear-gradient(118deg, transparent 0 74px, rgba(240, 213, 167, .025) 75px 76px, transparent 77px 150px);
    opacity: .7;
    pointer-events: none;
}

.footer-topline {
    width: min(1360px, calc(100% - 96px));
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(240, 213, 167, .72) 14%, rgba(240, 213, 167, .25) 72%, transparent);
}

.footer-identity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: end;
    gap: 50px;
    padding-top: 78px;
    padding-bottom: 66px;
    border-bottom: 1px solid rgba(240, 213, 167, .2);
}

.footer-identity-copy .footer-label {
    display: inline-flex;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .32em;
}

.footer-identity h2 {
    margin: 22px 0 0;
    color: #f3e7d7;
    font-family: var(--display);
    font-size: clamp(3.35rem, 7.2vw, 7.1rem);
    font-weight: 400;
    letter-spacing: .015em;
    line-height: .78;
}

.footer-identity h2 em {
    display: inline-block;
    margin-top: 11px;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: .22em;
    font-style: normal;
    font-weight: 300;
    letter-spacing: .29em;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: top;
}

.footer-identity-aside {
    justify-self: end;
    max-width: 190px;
    padding-bottom: 5px;
}

.footer-identity-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: .14em;
}

.footer-identity-index i {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.footer-identity-aside p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.site-footer .footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1.55fr .72fr .72fr 1.18fr;
    gap: 46px;
    padding: 58px 0 61px;
}

.site-footer .footer-brand {
    padding-right: 36px;
}

.site-footer .footer-brand .brand {
    display: inline-flex;
}

.footer-brand-rule {
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 22px;
    background: var(--gold);
}

.site-footer .footer-brand p {
    max-width: 270px;
    margin-top: 18px;
    color: rgba(247, 239, 230, .58);
    font-size: 12px;
    line-height: 1.85;
}

.footer-brand-signature {
    display: block;
    margin-top: 26px;
    color: rgba(240, 213, 167, .48);
    font-size: 8px;
    letter-spacing: .3em;
}

.site-footer .footer-column {
    gap: 14px;
}

.site-footer .footer-column .footer-label {
    margin-bottom: 7px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: .2em;
}

.site-footer .footer-column a {
    position: relative;
    color: rgba(247, 239, 230, .58);
    font-size: 11px;
    transition: color .2s ease, transform .2s ease;
}

.site-footer .footer-column a::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    content: '';
    background: var(--gold);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity .2s ease, transform .2s ease;
}

.site-footer .footer-column a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.site-footer .footer-column a:hover::after {
    opacity: .7;
    transform: scaleX(1);
}

.site-footer .footer-newsletter {
    padding-left: 30px;
    border-left: 1px solid rgba(240, 213, 167, .17);
}

.site-footer .footer-newsletter p {
    max-width: 240px;
    margin: 0 0 18px;
    color: rgba(247, 239, 230, .58);
    font-size: 11px;
    line-height: 1.7;
}

.site-footer .newsletter-form {
    height: 48px;
    padding: 0 8px 0 15px;
    border: 1px solid rgba(240, 213, 167, .38);
    border-radius: 4px;
    background: rgba(255, 255, 255, .025);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-footer .newsletter-form:focus-within {
    border-color: rgba(240, 213, 167, .72);
    background: rgba(240, 213, 167, .045);
    box-shadow: 0 0 20px rgba(212, 175, 90, .1);
}

.site-footer .newsletter-form input {
    color: var(--text);
    font-size: 11px;
}

.site-footer .newsletter-form input::placeholder {
    color: rgba(247, 239, 230, .42);
}

.site-footer .icon-button {
    width: 34px;
    height: 34px;
    color: var(--gold-light);
}

.site-footer .icon-button:hover {
    color: #fff1d5;
    transform: translateX(2px);
}

.newsletter-note {
    display: block;
    margin-top: 13px;
    color: rgba(247, 239, 230, .35);
    font-size: 9px;
    letter-spacing: .04em;
}

.site-footer .footer-bottom {
    position: relative;
    min-height: 64px;
    padding: 18px 0 23px;
    border-top: 1px solid rgba(240, 213, 167, .12);
    color: rgba(247, 239, 230, .34);
    font-size: 8px;
    letter-spacing: .16em;
}

.footer-bottom-copy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-copy i {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.footer-bottom-mark {
    color: rgba(240, 213, 167, .44);
    letter-spacing: .26em;
}

@media (max-width: 900px) {
    .footer-identity {
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 30px;
    }

    .site-footer .footer-main {
        grid-template-columns: 1.25fr 1fr 1fr;
        gap: 38px 30px;
    }

    .site-footer .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 430px;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(240, 213, 167, .17);
        padding-top: 27px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        margin-top: 96px;
    }

    .footer-topline {
        width: calc(100% - 36px);
    }

    .footer-identity {
        display: block;
        padding-top: 61px;
        padding-bottom: 47px;
    }

    .footer-identity h2 {
        margin-top: 19px;
        font-size: clamp(3rem, 14vw, 5.4rem);
    }

    .footer-identity h2 em {
        display: block;
        margin-top: 15px;
        font-size: .2em;
        letter-spacing: .22em;
    }

    .footer-identity-aside {
        max-width: none;
        margin-top: 31px;
    }

    .footer-identity-aside p {
        max-width: 250px;
        margin-top: 13px;
    }

    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding: 45px 0 45px;
    }

    .site-footer .footer-brand,
    .site-footer .footer-newsletter {
        grid-column: 1 / -1;
    }

    .site-footer .footer-brand {
        padding-right: 0;
    }

    .site-footer .footer-newsletter {
        max-width: none;
        margin-top: 4px;
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
        padding-bottom: 28px;
        line-height: 1.5;
    }

    .footer-bottom-copy {
        flex-wrap: wrap;
        gap: 7px 10px;
    }
}

@media (max-width: 390px) {
    .site-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .site-footer .footer-column {
        gap: 11px;
    }
}

@media (max-width: 560px) {
    .auth-topbar-inner {
        width: calc(100% - 28px);
    }

    .auth-actions .button-ghost {
        display: none;
    }

    .auth-actions .button-gold {
        padding: 0 12px;
        font-size: 9px;
    }
}

/* Footer premium v2: an editorial closing frame with a stronger visual hierarchy. */
.site-footer {
    margin-top: 150px;
    background:
        radial-gradient(circle at 8% 12%, rgba(101, 35, 51, .34), transparent 27rem),
        radial-gradient(circle at 92% 80%, rgba(217, 180, 122, .09), transparent 24rem),
        linear-gradient(180deg, #0b0c10 0%, #08090c 58%, #050609 100%);
}

.site-footer .footer-topline {
    position: relative;
    display: flex;
    width: min(1360px, calc(100% - 96px));
    height: auto;
    min-height: 49px;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 14px;
    background: none;
    color: rgba(240, 213, 167, .58);
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.site-footer .footer-topline::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, rgba(240, 213, 167, .72), rgba(240, 213, 167, .22) 54%, transparent);
}

.site-footer .footer-topline span:last-child {
    color: rgba(247, 239, 230, .32);
}

.site-footer .footer-identity,
.site-footer .footer-main,
.site-footer .footer-bottom {
    position: relative;
    z-index: 1;
}

.site-footer .footer-identity {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 60px;
    padding-top: 82px;
    padding-bottom: 75px;
    border-bottom-color: rgba(240, 213, 167, .26);
}

.site-footer .footer-identity h2 {
    margin-top: 24px;
    color: #f5ebdf;
    font-size: clamp(3.6rem, 7.8vw, 8.6rem);
    letter-spacing: -.045em;
    line-height: .82;
    text-shadow: 0 12px 45px rgba(0, 0, 0, .26);
}

.site-footer .footer-identity h2 em {
    margin-top: 15px;
    color: var(--gold-light);
    font-size: .205em;
    letter-spacing: .34em;
}

.site-footer .footer-identity-aside {
    align-self: end;
    max-width: 220px;
    padding: 0 0 7px 28px;
    border-left: 1px solid rgba(240, 213, 167, .22);
}

.site-footer .footer-identity-aside p {
    max-width: 190px;
    margin-top: 22px;
    color: rgba(247, 239, 230, .56);
    font-size: 12px;
    line-height: 1.75;
}

.footer-identity-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .2s ease, gap .2s ease;
}

.footer-identity-link svg {
    width: 16px;
    height: 16px;
}

.footer-identity-link:hover {
    gap: 17px;
    color: #fff1d5;
}

.footer-ghost-word {
    position: absolute;
    z-index: 0;
    top: 245px;
    right: -3.5vw;
    color: rgba(247, 239, 230, .022);
    font-family: var(--display);
    font-size: min(20vw, 310px);
    letter-spacing: -.095em;
    line-height: .8;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.site-footer .footer-main {
    grid-template-columns: 1.28fr .68fr .68fr 1.46fr;
    gap: 48px;
    padding-top: 68px;
    padding-bottom: 78px;
}

.site-footer .footer-brand {
    padding-right: 25px;
}

.footer-brand-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand-edition {
    padding-top: 3px;
    color: rgba(240, 213, 167, .42);
    font-size: 8px;
    letter-spacing: .24em;
    line-height: 1.7;
    text-align: right;
}

.site-footer .footer-brand-rule {
    width: 64px;
    margin-top: 25px;
    background: linear-gradient(90deg, var(--gold-light), rgba(217, 180, 122, .12));
}

.site-footer .footer-brand p {
    max-width: 290px;
    margin-top: 21px;
    color: rgba(247, 239, 230, .66);
    font-size: 13px;
    line-height: 1.85;
}

.footer-brand-signature-row {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
}

.site-footer .footer-brand-signature,
.footer-brand-year {
    margin-top: 0;
    color: rgba(240, 213, 167, .54);
    font-size: 8px;
    letter-spacing: .27em;
}

.footer-brand-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(217, 180, 122, .42);
}

.footer-brand-year {
    color: rgba(247, 239, 230, .3);
    letter-spacing: .12em;
}

.site-footer .footer-column {
    gap: 15px;
}

.site-footer .footer-column .footer-label {
    margin-bottom: 9px;
    color: var(--gold-light);
    letter-spacing: .25em;
}

.site-footer .footer-column a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(247, 239, 230, .6);
    font-size: 12px;
}

.site-footer .footer-column a span {
    color: var(--gold);
    font-size: 12px;
    opacity: .25;
    transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.site-footer .footer-column a::after {
    right: 19px;
}

.site-footer .footer-column a:hover {
    color: #fff1d5;
    transform: translateX(0);
}

.site-footer .footer-column a:hover span {
    opacity: .85;
    transform: translateX(0);
}

.site-footer .footer-newsletter {
    position: relative;
    min-height: 284px;
    padding: 31px 34px 30px;
    border: 1px solid rgba(240, 213, 167, .44);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(54, 23, 34, .78), rgba(12, 13, 17, .92) 62%),
        #0c0d11;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035), 0 25px 65px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.site-footer .footer-newsletter::before {
    position: absolute;
    top: -42px;
    right: -22px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(240, 213, 167, .15);
    border-radius: 50%;
    content: '';
    box-shadow: 0 0 0 17px rgba(240, 213, 167, .025), 0 0 0 34px rgba(240, 213, 167, .015);
}

.site-footer .footer-newsletter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer .footer-newsletter-head .footer-label {
    color: var(--gold-light);
}

.footer-newsletter-status {
    color: rgba(247, 239, 230, .36);
    font-size: 8px;
    letter-spacing: .16em;
    white-space: nowrap;
}

.footer-newsletter-status i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 6px;
    border-radius: 50%;
    background: #b88c54;
    box-shadow: 0 0 9px rgba(217, 180, 122, .7);
    vertical-align: 1px;
}

.site-footer .footer-newsletter h3 {
    position: relative;
    max-width: 370px;
    margin: 36px 0 18px;
    color: #f4eadd;
    font-family: var(--display);
    font-size: clamp(2.15rem, 3.2vw, 3.35rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .9;
}

.site-footer .footer-newsletter h3 em {
    color: var(--gold-light);
    font-style: italic;
}

.site-footer .footer-newsletter p {
    position: relative;
    max-width: 325px;
    margin-bottom: 21px;
    color: rgba(247, 239, 230, .58);
    font-size: 11px;
    line-height: 1.7;
}

.site-footer .newsletter-form {
    position: relative;
    height: 52px;
    padding: 0 9px 0 16px;
    border: 1px solid rgba(240, 213, 167, .42);
    border-radius: 4px;
    background: rgba(4, 6, 9, .42);
}

.site-footer .newsletter-form input {
    font-size: 12px;
}

.site-footer .icon-button {
    width: 36px;
    height: 36px;
}

.site-footer .newsletter-note {
    margin-top: 14px;
    color: rgba(247, 239, 230, .38);
    font-size: 9px;
}

.site-footer .footer-bottom {
    min-height: 70px;
    padding-top: 21px;
    padding-bottom: 25px;
    border-top-color: rgba(240, 213, 167, .17);
    color: rgba(247, 239, 230, .38);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-bottom-right > span:first-child {
    color: rgba(247, 239, 230, .23);
}

@media (max-width: 1100px) {
    .site-footer .footer-main {
        grid-template-columns: 1.15fr .75fr .75fr 1.25fr;
        gap: 30px;
    }

    .site-footer .footer-newsletter {
        padding-right: 26px;
        padding-left: 26px;
    }
}

@media (max-width: 900px) {
    .site-footer .footer-topline {
        width: calc(100% - 56px);
    }

    .site-footer .footer-identity {
        grid-template-columns: minmax(0, 1fr) 205px;
        gap: 34px;
    }

    .site-footer .footer-main {
        grid-template-columns: 1.15fr 1fr 1fr;
        gap: 40px 27px;
    }

    .site-footer .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 600px;
        margin-top: 8px;
        padding: 31px 34px 30px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        margin-top: 105px;
    }

    .site-footer .footer-topline {
        width: calc(100% - 36px);
        min-height: 44px;
        padding-bottom: 12px;
        font-size: 7px;
        letter-spacing: .2em;
    }

    .site-footer .footer-identity {
        display: block;
        padding-top: 62px;
        padding-bottom: 52px;
    }

    .site-footer .footer-identity h2 {
        margin-top: 21px;
        font-size: clamp(3.15rem, 14.8vw, 5.8rem);
        line-height: .88;
    }

    .site-footer .footer-identity h2 em {
        display: block;
        margin-top: 17px;
        font-size: .2em;
        letter-spacing: .24em;
    }

    .site-footer .footer-identity-aside {
        max-width: none;
        margin-top: 36px;
        padding: 0 0 0 20px;
    }

    .site-footer .footer-identity-aside p {
        max-width: 270px;
        margin-top: 15px;
    }

    .footer-ghost-word {
        top: 245px;
        right: -22vw;
        font-size: 36vw;
    }

    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px 22px;
        padding-top: 49px;
        padding-bottom: 53px;
    }

    .site-footer .footer-brand,
    .site-footer .footer-newsletter {
        grid-column: 1 / -1;
    }

    .site-footer .footer-brand {
        padding-right: 0;
    }

    .site-footer .footer-brand p {
        max-width: 305px;
    }

    .site-footer .footer-newsletter {
        max-width: none;
        margin-top: 1px;
        padding: 27px 22px 25px;
    }

    .site-footer .footer-newsletter h3 {
        margin-top: 32px;
        font-size: clamp(2.25rem, 10vw, 3.25rem);
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        padding-bottom: 29px;
        line-height: 1.5;
    }

    .footer-bottom-copy {
        flex-wrap: wrap;
        gap: 7px 10px;
    }

    .footer-bottom-right {
        flex-wrap: wrap;
        gap: 10px 24px;
    }
}

@media (max-width: 390px) {
    .site-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer .footer-column {
        gap: 13px;
    }

    .site-footer .footer-newsletter-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* JustWatch-inspired discovery directory: more useful footer depth without losing the CineVault tone. */
.site-footer .footer-directory {
    position: relative;
    z-index: 1;
    padding-bottom: 47px;
}

.footer-directory-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 0 25px;
}

.footer-directory-brandline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-directory-word {
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: .12em;
}

.footer-directory-brandline > i {
    width: 1px;
    height: 19px;
    background: rgba(240, 213, 167, .27);
}

.footer-directory-brandline > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(247, 239, 230, .68);
    font-size: 11px;
    transition: color .2s ease, gap .2s ease;
}

.footer-directory-brandline > a span {
    color: var(--gold);
    font-size: 13px;
}

.footer-directory-brandline > a:hover {
    gap: 12px;
    color: #fff1d5;
}

.footer-directory-badge {
    padding: 8px 12px;
    border: 1px solid rgba(217, 180, 122, .52);
    border-radius: 3px;
    color: var(--gold-light);
    background: rgba(217, 180, 122, .08);
    font-size: 8px;
    letter-spacing: .18em;
}

.footer-directory-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    color: rgba(247, 239, 230, .34);
    font-size: 9px;
    letter-spacing: .07em;
    text-align: right;
}

.footer-directory-meta span:first-child {
    color: rgba(240, 213, 167, .52);
}

.footer-directory-rule {
    height: 1px;
    margin-bottom: 34px;
    background: linear-gradient(90deg, rgba(240, 213, 167, .22), rgba(255, 255, 255, .1) 48%, transparent);
}

.footer-directory-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.footer-directory-group {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-directory-heading {
    min-height: 30px;
    color: rgba(247, 239, 230, .82);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.45;
}

.footer-directory-group a {
    position: relative;
    color: rgba(247, 239, 230, .48);
    font-size: 10px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}

.footer-directory-group a::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    content: '';
    background: var(--gold);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity .2s ease, transform .2s ease;
}

.footer-directory-group a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-directory-group a:hover::after {
    opacity: .55;
    transform: scaleX(1);
}

@media (max-width: 1100px) {
    .footer-directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 34px;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-directory {
        padding-bottom: 40px;
    }

    .footer-directory-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding-bottom: 23px;
    }

    .footer-directory-meta {
        align-items: flex-start;
        text-align: left;
    }

    .footer-directory-rule {
        margin-bottom: 29px;
    }

    .footer-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
    }

    .footer-directory-heading {
        min-height: 0;
    }
}

/* Final cascade for the premium footer treatment. */
.site-footer .footer-directory-grid {
    gap: 38px 31px;
}

.site-footer .footer-directory-group {
    gap: 14px;
    padding-top: 24px;
}

.site-footer .footer-directory-heading {
    min-height: 42px;
}

@media (max-width: 640px) {
    .site-footer .footer-directory-grid {
        gap: 34px 22px;
    }

    .site-footer .footer-directory-group {
        gap: 14px;
        padding-top: 21px;
    }

    .site-footer .footer-directory-heading {
        min-height: 0;
    }
}

/* Final mobile readability pass: this block intentionally stays last in the cascade. */
@media (max-width: 640px) {
    html {
        font-size: 16px;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .container {
        width: calc(100% - 32px);
    }

    .brand-mark {
        font-size: 21px;
        letter-spacing: .06em;
    }

    .brand-sub {
        font-size: 7px;
        letter-spacing: .38em;
    }

    .nav-link {
        padding: 18px 0;
        font-size: 16px;
        line-height: 1.3;
    }

    .eyebrow,
    .section-kicker,
    .footer-label,
    .poster-kicker,
    .detail-kicker,
    .hero-side-kicker {
        font-size: 9px;
        letter-spacing: .2em;
        line-height: 1.35;
    }

    .page-hero {
        padding: 68px 0 52px;
    }

    .page-hero h1,
    .detail-title,
    .list-head h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 13vw, 4.35rem);
        letter-spacing: -.045em;
        line-height: .88;
    }

    .page-hero p,
    .detail-body p {
        font-size: 14px;
        line-height: 1.75;
    }

    .section {
        padding-top: 58px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        max-width: 100%;
        font-size: clamp(2rem, 10.5vw, 3rem);
        letter-spacing: .02em;
        line-height: .94;
    }

    .section-heading h2::after {
        width: 38px;
        margin: 0 0 7px 10px;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }

    .button {
        min-height: 50px;
        padding: 0 16px;
        border-radius: 5px;
        font-size: 10px;
        letter-spacing: .08em;
    }

    .button-small {
        min-height: 39px;
        padding: 0 12px;
        font-size: 9px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        line-height: .9;
    }

    .hero-title span {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .hero-meta,
    .home-hero-meta {
        gap: 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .hero-description,
    .home-hero-description {
        font-size: 14px;
        line-height: 1.72;
    }

    .home-hero-copy h1 {
        max-width: 100%;
        margin-top: 18px;
        font-size: clamp(2.75rem, 12.5vw, 4.15rem);
        letter-spacing: -.055em;
        line-height: .9;
        white-space: normal;
    }

    .home-hero-tagline {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .home-hero-kicker {
        font-size: 9px;
        letter-spacing: .28em;
    }

    .home-hero-credits {
        font-size: 12px;
        line-height: 1.8;
    }

    .home-similar-heading h2 {
        font-size: clamp(2rem, 10.5vw, 2.85rem);
    }

    .home-similar-info h3 {
        font-size: 1.2rem;
        line-height: 1;
    }

    .home-similar-meta {
        font-size: 10px;
    }

    .poster-title,
    .films-grid .poster-title,
    .series-grid .poster-title,
    .actor-card-premium .poster-title {
        font-size: 1.12rem;
        line-height: 1;
    }

    .poster-meta,
    .films-grid .poster-meta,
    .series-grid .poster-meta {
        font-size: 10px;
        line-height: 1.45;
    }

    .genre-pill {
        font-size: 8px;
    }

    .genre-card.genre-card-premium h3 {
        font-size: 1.45rem;
        line-height: .95;
    }

    .genre-card.genre-card-premium p {
        font-size: 9px;
        line-height: 1.4;
    }

    .collection-card-premium h3 {
        font-size: 2.05rem;
        line-height: .9;
    }

    .collection-card-premium p {
        font-size: 11px;
        line-height: 1.55;
    }

    .series-hero-copy h1 {
        font-size: clamp(2.95rem, 13vw, 4.8rem);
        line-height: .88;
    }

    .series-hero-copy p,
    .films-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .series-catalog-heading h2,
    .films-catalog-heading h2 {
        font-size: clamp(2rem, 10vw, 2.9rem);
    }

    .footer-identity h2,
    .site-footer .footer-identity h2 {
        font-size: clamp(2.8rem, 13vw, 4.7rem);
        line-height: .9;
    }

    .site-footer .footer-identity h2 em {
        font-size: .2em;
        letter-spacing: .24em;
    }

    .site-footer .footer-identity-aside p {
        font-size: 14px;
        line-height: 1.75;
    }

    .site-footer .footer-brand-head .brand-mark {
        font-size: 25px;
    }

    .site-footer .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
    }

    .site-footer .footer-column a {
        font-size: 14px;
        line-height: 1.55;
    }

    .site-footer .footer-newsletter h3 {
        font-size: clamp(2.05rem, 9.5vw, 3.15rem);
        line-height: .92;
    }

    .site-footer .footer-newsletter p {
        font-size: 13px;
        line-height: 1.7;
    }

    .site-footer .newsletter-form input {
        font-size: 13px;
    }

    .footer-directory-heading,
    .footer-directory-group a {
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-directory-word {
        font-size: 21px;
    }

    .footer-cta {
        display: block;
        margin-top: 0;
        padding: 22px 18px 19px;
    }

    .footer-cta-copy h3 {
        font-size: 2rem;
        line-height: .98;
    }

    .footer-cta-copy p {
        font-size: 13px;
        line-height: 1.65;
    }

    .footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        margin-top: 18px;
    }

    .footer-action {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 0 14px;
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .home-similar-info h3 {
        font-size: 1.16rem;
    }

    .footer-cta-copy h3 {
        font-size: 1.8rem;
    }
}

/* Footer CTA v18: quick premium navigation for the client demo. */
.footer-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-top: 28px;
    padding: 25px 28px;
    border: 1px solid rgba(240, 213, 167, .24);
    border-radius: 9px;
    background:
        linear-gradient(105deg, rgba(58, 20, 32, .34), rgba(8, 10, 14, .62) 58%),
        rgba(8, 10, 14, .4);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02), 0 20px 55px rgba(0, 0, 0, .22);
}

.footer-cta-copy {
    min-width: 0;
}

.footer-cta-copy .footer-label {
    color: var(--gold-light);
}

.footer-cta-copy h3 {
    margin: 10px 0 5px;
    color: #f5ebdf;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .95;
}

.footer-cta-copy p {
    margin: 0;
    color: rgba(247, 239, 230, .56);
    font-size: 12px;
    line-height: 1.6;
}

.footer-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.footer-action {
    display: inline-flex;
    min-width: 150px;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 15px;
    border: 1px solid rgba(240, 213, 167, .3);
    border-radius: 5px;
    color: rgba(247, 239, 230, .8);
    background: rgba(255, 255, 255, .025);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: transform .24s ease, color .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.footer-action > span:last-child {
    color: var(--gold-light);
    font-size: 16px;
    line-height: 1;
    transition: transform .24s ease;
}

.footer-action:hover {
    color: #fff1d5;
    border-color: rgba(240, 213, 167, .75);
    background: rgba(217, 180, 122, .08);
    box-shadow: 0 0 20px rgba(212, 175, 90, .13);
    transform: translateY(-3px);
}

.footer-action:hover > span:last-child {
    transform: translate(3px, -3px);
}

.footer-action-primary {
    color: #1a130e;
    border-color: rgba(240, 213, 167, .86);
    background: linear-gradient(135deg, #f0d5a7, #c8985c);
    box-shadow: 0 8px 22px rgba(212, 175, 90, .13);
}

.footer-action-primary:hover {
    color: #1a130e;
    background: linear-gradient(135deg, #ffe2b5, #d9a95d);
}

.footer-action-primary > span:last-child {
    color: #1a130e;
}

.footer-action-soft {
    background: linear-gradient(135deg, rgba(217, 180, 122, .11), rgba(255, 255, 255, .02));
}

@media (max-width: 1100px) {
    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }
}

/* Mobile typography v18: readable editorial scale without shrinking desktop. */
@media (max-width: 640px) {
    html {
        font-size: 16px;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .container {
        width: calc(100% - 32px);
    }

    .brand-mark {
        font-size: 21px;
        letter-spacing: .06em;
    }

    .brand-sub {
        font-size: 7px;
        letter-spacing: .38em;
    }

    .nav-link {
        padding: 18px 0;
        font-size: 16px;
        line-height: 1.3;
    }

    .eyebrow,
    .section-kicker,
    .footer-label,
    .poster-kicker,
    .detail-kicker,
    .hero-side-kicker {
        font-size: 9px;
        letter-spacing: .2em;
        line-height: 1.35;
    }

    .page-hero {
        padding: 68px 0 52px;
    }

    .page-hero h1,
    .detail-title,
    .list-head h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 13vw, 4.35rem);
        letter-spacing: -.045em;
        line-height: .88;
    }

    .page-hero p,
    .detail-body p {
        font-size: 14px;
        line-height: 1.75;
    }

    .section {
        padding-top: 58px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        max-width: 100%;
        font-size: clamp(2rem, 10.5vw, 3rem);
        letter-spacing: .02em;
        line-height: .94;
    }

    .section-heading h2::after {
        width: 38px;
        margin: 0 0 7px 10px;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }

    .button {
        min-height: 50px;
        padding: 0 16px;
        border-radius: 5px;
        font-size: 10px;
        letter-spacing: .08em;
    }

    .button-small {
        min-height: 39px;
        padding: 0 12px;
        font-size: 9px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        line-height: .9;
    }

    .hero-title span {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .hero-meta,
    .home-hero-meta {
        gap: 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .hero-description,
    .home-hero-description {
        font-size: 14px;
        line-height: 1.72;
    }

    .home-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.75rem, 12.5vw, 4.15rem);
        letter-spacing: -.055em;
        line-height: .9;
        white-space: normal;
    }

    .home-hero-tagline {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .home-hero-kicker {
        font-size: 9px;
        letter-spacing: .28em;
    }

    .home-hero-credits {
        font-size: 12px;
        line-height: 1.8;
    }

    .home-similar-heading h2 {
        font-size: clamp(2rem, 10.5vw, 2.85rem);
    }

    .home-similar-info h3 {
        font-size: 1.2rem;
        line-height: 1;
    }

    .home-similar-meta {
        font-size: 10px;
    }

    .poster-title {
        font-size: 1.08rem;
        line-height: 1;
    }

    .poster-meta {
        font-size: 10px;
        line-height: 1.45;
    }

    .genre-card.genre-card-premium h3 {
        font-size: 1.45rem;
        line-height: .95;
    }

    .genre-card.genre-card-premium p {
        font-size: 8px;
        line-height: 1.35;
    }

    .collection-card-premium h3 {
        font-size: 2.05rem;
        line-height: .9;
    }

    .collection-card-premium p {
        font-size: 11px;
        line-height: 1.55;
    }

    .footer-identity h2 {
        font-size: clamp(2.8rem, 13vw, 4.7rem);
        line-height: .9;
    }

    .site-footer .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
    }

    .site-footer .footer-column a {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-directory-heading,
    .footer-directory-group a {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-directory-word {
        font-size: 21px;
    }

    .site-footer .footer-newsletter h3 {
        font-size: clamp(2.05rem, 9.5vw, 3.15rem);
        line-height: .92;
    }

    .site-footer .footer-newsletter p {
        font-size: 13px;
        line-height: 1.7;
    }

    .site-footer .newsletter-form input {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .footer-cta {
        display: block;
        margin-top: 0;
        padding: 22px 18px 19px;
    }

    .footer-cta-copy h3 {
        font-size: 2rem;
        line-height: .98;
    }

    .footer-cta-copy p {
        font-size: 13px;
    }

    .footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        margin-top: 18px;
    }

    .footer-action {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 0 14px;
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .home-similar-info h3 {
        font-size: 1.16rem;
    }

    .footer-cta-copy h3 {
        font-size: 1.8rem;
    }
}

/* Index v16: reference-matched cinematic home composition. */
.hero-home {
    min-height: 610px;
    border-bottom-color: rgba(240, 213, 167, .2);
    background: #080a0e;
}

.hero-home .hero-backdrop {
    background-image: url('../images/hero-last-horizon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-home .hero-backdrop::before {
    background:
        radial-gradient(ellipse at 37% 52%, rgba(7, 8, 11, .2), transparent 34%),
        linear-gradient(90deg, rgba(5, 6, 9, .96) 0%, rgba(7, 8, 12, .75) 27%, rgba(7, 8, 12, .2) 58%, rgba(7, 8, 12, .36) 100%),
        linear-gradient(180deg, rgba(5, 6, 9, .14), transparent 38%, rgba(5, 6, 9, .75) 100%);
}

.hero-home .hero-backdrop::after {
    inset: 0;
    width: auto;
    height: auto;
    opacity: .8;
    background: linear-gradient(180deg, transparent 62%, rgba(6, 7, 10, .76) 100%);
    transform: none;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 610px;
    grid-template-columns: 290px minmax(0, 1fr) 150px;
    align-items: center;
    gap: 30px;
    padding-top: 54px;
    padding-bottom: 52px;
}

.home-hero-poster {
    position: relative;
    display: block;
    width: 100%;
    max-width: 290px;
    aspect-ratio: 2 / 2.9;
    overflow: hidden;
    border: 1px solid rgba(240, 213, 167, .82);
    border-radius: 7px;
    background: #101318;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 24px rgba(212, 175, 90, .11), inset 0 0 0 1px rgba(255, 255, 255, .04);
    isolation: isolate;
}

.home-hero-poster::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 46%;
    content: '';
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(3, 4, 6, .9));
}

.home-hero-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .7s cubic-bezier(.2, .65, .25, 1), filter .7s ease;
}

.home-hero-poster:hover img {
    filter: saturate(1.08) brightness(1.05);
    transform: scale(1.045);
}

.home-hero-poster-shine {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, .1) 47%, transparent 58%);
    opacity: 0;
    transform: translateX(-70%);
    transition: opacity .35s ease, transform .8s ease;
}

.home-hero-poster:hover .home-hero-poster-shine {
    opacity: 1;
    transform: translateX(70%);
}

.home-hero-poster-label {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 20px;
    left: 22px;
    color: rgba(255, 241, 215, .88);
    font-size: 9px;
    letter-spacing: .38em;
    text-align: center;
    text-transform: uppercase;
}

.home-hero-copy {
    max-width: 670px;
    padding-top: 4px;
}

.home-hero-kicker {
    display: block;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .48em;
    text-transform: uppercase;
}

.home-hero-copy h1 {
    margin: 24px 0 5px;
    color: #fbf5ee;
    font-family: var(--display);
    font-size: clamp(3.35rem, 5.3vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .87;
    text-wrap: balance;
}

.home-hero-tagline {
    margin: 0;
    color: #f0d5bc;
    font-family: var(--sans);
    font-size: clamp(1.35rem, 2vw, 2.15rem);
    font-weight: 300;
    letter-spacing: .02em;
    line-height: 1.2;
}

.home-hero-copy .hero-imdb {
    margin-top: 22px;
}

.home-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: rgba(247, 239, 230, .82);
    font-size: 14px;
}

.home-hero-description {
    max-width: 590px;
    margin: 22px 0 0;
    color: rgba(239, 232, 225, .78);
    font-size: 15px;
    line-height: 1.72;
}

.home-hero-copy .hero-actions {
    margin-top: 26px;
}

.home-hero-credits {
    margin-top: 23px;
    color: rgba(239, 232, 225, .68);
    font-size: 13px;
    line-height: 1.85;
}

.home-hero-credits p {
    margin: 0;
}

.home-hero-credits strong {
    margin-left: 6px;
    color: rgba(251, 242, 228, .9);
    font-weight: 500;
}

.home-hero-quote {
    display: flex;
    max-width: 135px;
    align-self: center;
    flex-direction: column;
    gap: 24px;
    color: rgba(240, 213, 167, .62);
    font-size: 10px;
    letter-spacing: .34em;
    line-height: 1.8;
    text-transform: uppercase;
}

.home-hero-quote i {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--gold-light);
    box-shadow: 0 0 12px rgba(240, 213, 167, .32);
}

.home-similar-section {
    padding-top: 38px;
    background: linear-gradient(180deg, rgba(13, 15, 19, .8), rgba(8, 10, 14, .1));
}

.home-similar-heading {
    margin-bottom: 23px;
}

.home-similar-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: .075em;
}

.home-similar-heading .text-link {
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-similar-card {
    min-width: 0;
}

.home-similar-image-link {
    position: relative;
    display: block;
    aspect-ratio: 1.4 / 1;
    overflow: hidden;
    border: 1px solid rgba(240, 213, 167, .48);
    border-radius: 6px;
    background: #101318;
    box-shadow: 0 13px 32px rgba(0, 0, 0, .25);
    isolation: isolate;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.home-similar-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(.84) brightness(.78);
    transition: transform .55s cubic-bezier(.2, .65, .25, 1), filter .55s ease;
}

.home-similar-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(2, 3, 5, .04) 28%, rgba(2, 3, 5, .88) 100%);
}

.home-similar-image-link .genre-pill {
    top: 15px;
    left: 15px;
    border-color: rgba(240, 213, 167, .65);
    color: #f7ead6;
    background: rgba(7, 8, 11, .6);
    font-size: 9px;
}

.home-similar-info {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 16px;
    left: 20px;
}

.home-similar-info h3 {
    margin: 0;
    color: #f8f1e8;
    font-family: var(--display);
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: .95;
}

.home-similar-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
    color: rgba(247, 239, 230, .76);
    font-size: 11px;
}

.home-similar-meta .rating {
    color: var(--gold-light);
}

.home-similar-image-link:hover {
    border-color: rgba(240, 213, 167, .88);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .42), 0 0 24px rgba(212, 175, 90, .2);
    transform: translateY(-3px);
}

.home-similar-image-link:hover .home-similar-image {
    filter: saturate(1) brightness(.98);
    transform: scale(1.045);
}

@media (max-width: 1180px) {
    .home-hero-content {
        grid-template-columns: 240px minmax(0, 1fr) 115px;
        gap: 25px;
    }

    .home-hero-copy h1 {
        font-size: clamp(3rem, 5.4vw, 5rem);
    }
}

@media (max-width: 900px) {
    .home-hero-content {
        min-height: 630px;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 25px;
    }

    .home-hero-quote {
        display: none;
    }

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

@media (max-width: 640px) {
    .hero-home,
    .home-hero-content {
        min-height: auto;
    }

    .home-hero-content {
        display: block;
        padding-top: 39px;
        padding-bottom: 51px;
    }

    .home-hero-poster {
        width: min(205px, 64vw);
        max-width: none;
        margin: 0 auto 34px;
    }

    .home-hero-copy {
        max-width: none;
    }

    .home-hero-kicker {
        font-size: 9px;
        letter-spacing: .36em;
    }

    .home-hero-copy h1 {
        margin-top: 18px;
        font-size: clamp(3.05rem, 15vw, 4.8rem);
    }

    .home-hero-tagline {
        font-size: 1.35rem;
    }

    .home-hero-description {
        font-size: 13px;
    }

    .home-hero-copy .hero-actions .button {
        width: 100%;
    }

    .home-similar-section {
        padding-top: 54px;
    }

    .home-similar-heading {
        margin-bottom: 19px;
    }

    .home-similar-heading h2 {
        font-size: 2.45rem;
    }

    .home-similar-grid {
        gap: 12px 10px;
    }

    .home-similar-image-link {
        aspect-ratio: 1.15 / 1;
    }

    .home-similar-image-link .genre-pill {
        top: 10px;
        left: 10px;
        padding: 5px 6px;
        font-size: 7px;
    }

    .home-similar-info {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .home-similar-info h3 {
        font-size: 1.3rem;
    }

    .home-similar-meta {
        gap: 5px;
        font-size: 9px;
    }
}

@media (max-width: 390px) {
    .home-similar-grid {
        grid-template-columns: 1fr;
    }

    .home-similar-image-link {
        aspect-ratio: 1.4 / 1;
    }
}

/* Client-demo polish: richer poster typography, visible image-led cards and catalog proof. */
.home-hero-poster-copy {
    position: absolute;
    z-index: 3;
    top: 27%;
    right: 18px;
    left: 18px;
    display: block;
    color: #fbf2e5;
    text-align: center;
    text-shadow: 0 3px 20px rgba(0, 0, 0, .8);
}

.home-hero-poster-copy strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(1.35rem, 2.1vw, 2.05rem);
    font-weight: 400;
    letter-spacing: .08em;
    line-height: .95;
    text-transform: uppercase;
}

.home-hero-poster-copy small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 232, 199, .86);
    font-size: 8px;
    letter-spacing: .38em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-hero-stats {
    display: flex;
    max-width: 520px;
    align-items: stretch;
    margin-top: 23px;
    border-top: 1px solid rgba(240, 213, 167, .23);
}

.home-hero-stats span {
    min-width: 100px;
    padding: 13px 24px 0 0;
    color: rgba(247, 239, 230, .52);
    font-size: 9px;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.home-hero-stats span + span {
    padding-left: 24px;
    border-left: 1px solid rgba(240, 213, 167, .18);
}

.home-hero-stats strong {
    display: inline-block;
    margin-right: 5px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

/* The source image should sit inside the card, above the surface background. */
.genre-card.genre-card-premium .genre-image {
    z-index: 0;
    opacity: .74;
    mix-blend-mode: normal;
}

.genre-card.genre-card-premium::before {
    z-index: 1;
    background: linear-gradient(135deg, rgba(9, 11, 15, .1), rgba(38, 13, 25, .32));
}

.genre-card.genre-card-premium::after {
    z-index: 1;
}

.collection-card-premium .collection-image {
    z-index: 0;
    opacity: .7;
    mix-blend-mode: normal;
}

.collection-card-premium::before {
    z-index: 1;
    background: linear-gradient(135deg, rgba(8, 9, 13, .12), rgba(40, 12, 25, .42));
}

.collection-card-premium::after {
    z-index: 1;
}

.home-similar-image {
    object-position: center center;
}

@media (min-width: 901px) {
    .home-hero-copy h1 {
        max-width: none;
        font-size: clamp(3rem, 4.5vw, 4.8rem);
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .home-hero-poster-copy {
        top: 28%;
        right: 12px;
        left: 12px;
    }

    .home-hero-poster-copy strong {
        font-size: 1.1rem;
    }

    .home-hero-poster-copy small {
        margin-top: 9px;
        font-size: 6px;
        letter-spacing: .26em;
    }

    .home-hero-stats {
        max-width: none;
    }

    .home-hero-stats span {
        min-width: 0;
        padding-right: 12px;
        font-size: 7px;
        letter-spacing: .1em;
    }

    .home-hero-stats span + span {
        padding-left: 12px;
    }

    .home-hero-stats strong {
        font-size: 1.1rem;
    }
}

/* Keep the atelier treatment as the final cascade after the shared responsive rules. */
.site-footer .footer-directory-grid {
    gap: 38px 31px;
}

.site-footer .footer-directory-group {
    gap: 14px;
    padding-top: 24px;
}

.site-footer .footer-directory-heading {
    min-height: 42px;
}

@media (max-width: 640px) {
    .site-footer .footer-directory-grid {
        gap: 34px 22px;
    }

    .site-footer .footer-directory-group {
        gap: 14px;
        padding-top: 21px;
    }

    .site-footer .footer-directory-heading {
        min-height: 0;
    }
}

/* Final atelier polish: richer atmosphere, framed index and clearer editorial details. */
.site-footer {
    background:
        linear-gradient(90deg, rgba(7, 8, 11, .985) 0%, rgba(7, 8, 11, .97) 44%, rgba(7, 8, 11, .86) 100%),
        url('../images/login-theatre.webp') center 68% / cover no-repeat;
}

.site-footer .footer-topline {
    letter-spacing: .34em;
}

.site-footer .footer-identity {
    padding-bottom: 83px;
}

.site-footer .footer-identity::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(240, 213, 167, .52) 22%, rgba(240, 213, 167, .16) 74%, transparent);
}

.site-footer .footer-identity-aside {
    padding-left: 32px;
}

.site-footer .footer-newsletter {
    transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.site-footer .footer-newsletter::after {
    position: absolute;
    top: 0;
    right: 30px;
    left: 30px;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: .72;
}

.site-footer .footer-newsletter:hover {
    border-color: rgba(240, 213, 167, .68);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035), 0 25px 65px rgba(0, 0, 0, .36), 0 0 30px rgba(212, 175, 90, .11);
    transform: translateY(-3px);
}

.site-footer .footer-directory {
    padding: 34px 34px 43px;
    border: 1px solid rgba(240, 213, 167, .16);
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(8, 9, 12, .24) 58%, rgba(46, 19, 30, .16));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .018), 0 25px 70px rgba(0, 0, 0, .18);
}

.footer-directory-toolbar {
    padding-bottom: 29px;
}

.footer-directory-brandline > a {
    padding: 10px 14px;
    border: 1px solid rgba(240, 213, 167, .3);
    border-radius: 4px;
    background: rgba(217, 180, 122, .045);
}

.footer-directory-brandline > a:hover {
    border-color: rgba(240, 213, 167, .66);
    background: rgba(217, 180, 122, .11);
}

.footer-directory-badge {
    background: linear-gradient(135deg, rgba(217, 180, 122, .16), rgba(217, 180, 122, .035));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.footer-directory-rule {
    margin-bottom: 39px;
    background: linear-gradient(90deg, rgba(240, 213, 167, .42), rgba(255, 255, 255, .13) 48%, transparent);
}

.footer-directory-grid {
    counter-reset: footer-directory;
    gap: 38px 31px;
}

.footer-directory-group {
    position: relative;
    counter-increment: footer-directory;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(240, 213, 167, .18);
}

.footer-directory-group::before {
    position: absolute;
    top: 0;
    right: 0;
    content: '0' counter(footer-directory);
    color: rgba(240, 213, 167, .48);
    font-size: 10px;
    letter-spacing: .18em;
}

.footer-directory-heading {
    min-height: 42px;
    color: #f4eadd;
    font-size: 13px;
    letter-spacing: .045em;
}

.footer-directory-group a {
    color: rgba(247, 239, 230, .63);
    font-size: 13px;
}

.footer-directory-group a:hover {
    color: #fff1d5;
}

.site-footer .footer-bottom {
    padding-top: 25px;
}

@media (max-width: 900px) {
    .site-footer .footer-directory {
        padding-right: 27px;
        padding-left: 27px;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-identity {
        padding-bottom: 56px;
    }

    .site-footer .footer-identity-aside {
        padding-left: 21px;
    }

    .site-footer .footer-directory {
        padding: 27px 20px 35px;
    }

    .footer-directory-toolbar {
        padding-bottom: 24px;
    }

    .footer-directory-brandline {
        gap: 11px;
    }

    .footer-directory-brandline > a {
        padding: 9px 12px;
    }

    .footer-directory-rule {
        margin-bottom: 31px;
    }

    .footer-directory-grid {
        gap: 34px 22px;
    }

    .footer-directory-group {
        padding-top: 21px;
    }
}

@media (max-width: 390px) {
    .footer-directory-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }
}

/* Mobile navigation fix: keep the opened panel above every hero and section. */
@media (max-width: 900px) {
    .site-header {
        z-index: 70;
        overflow: visible;
    }

    .main-nav {
        z-index: 60;
        top: 67px;
        bottom: auto;
        height: calc(100vh - 67px);
        max-height: calc(100dvh - 67px);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 20px 28px 36px;
        border-top: 1px solid rgba(240, 213, 167, .16);
        background: rgba(7, 9, 13, .985);
        box-shadow: 0 24px 55px rgba(0, 0, 0, .48);
        visibility: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .is-menu-open .main-nav {
        z-index: 60;
        visibility: visible;
    }

    .main-nav .nav-link {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .main-nav {
        top: 67px;
        height: calc(100vh - 67px);
        max-height: calc(100dvh - 67px);
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Footer typography scale v3: larger, calmer and easier to read on real screens. */
.site-footer .footer-topline {
    font-size: 10px;
}

.site-footer .footer-identity-aside p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-identity-link {
    font-size: 12px;
}

.site-footer .footer-brand-head .brand-mark {
    font-size: 28px;
}

.site-footer .footer-brand-head .brand-sub {
    font-size: 8px;
}

.footer-brand-edition {
    font-size: 9px;
}

.site-footer .footer-brand p {
    font-size: 15px;
    line-height: 1.9;
}

.site-footer .footer-brand-signature,
.site-footer .footer-brand-year {
    font-size: 9px;
}

.site-footer .footer-column .footer-label {
    font-size: 11px;
}

.site-footer .footer-column a {
    font-size: 14px;
}

.site-footer .footer-column a span {
    font-size: 13px;
}

.site-footer .footer-newsletter-status {
    font-size: 9px;
}

.site-footer .footer-newsletter p {
    font-size: 13px;
}

.site-footer .newsletter-form input {
    font-size: 13px;
}

.site-footer .newsletter-note {
    font-size: 10px;
}

.footer-directory-word {
    font-size: 23px;
}

.footer-directory-brandline > a {
    font-size: 13px;
}

.footer-directory-badge {
    font-size: 9px;
}

.footer-directory-meta {
    font-size: 11px;
}

.footer-directory-grid {
    gap: 30px;
}

.footer-directory-group {
    gap: 13px;
}

.footer-directory-heading {
    min-height: 38px;
    font-size: 13px;
}

.footer-directory-group a {
    font-size: 13px;
    line-height: 1.55;
}

.site-footer .footer-bottom {
    font-size: 10px;
}

.footer-bottom-right {
    font-size: 10px;
}

@media (max-width: 640px) {
    .site-footer .footer-topline {
        font-size: 8px;
    }

    .site-footer .footer-identity-aside p {
        font-size: 13px;
    }

    .site-footer .footer-brand-head .brand-mark {
        font-size: 25px;
    }

    .site-footer .footer-brand p {
        font-size: 14px;
    }

    .site-footer .footer-column a {
        font-size: 13px;
    }

    .footer-directory-toolbar {
        gap: 20px;
    }

    .footer-directory-heading,
    .footer-directory-group a {
        font-size: 13px;
    }

    .footer-directory-heading {
        min-height: 0;
    }
}

/* Final cascade for the premium footer treatment. */
.site-footer .footer-directory-grid {
    gap: 38px 31px;
}

.site-footer .footer-directory-group {
    gap: 14px;
    padding-top: 24px;
}

.site-footer .footer-directory-heading {
    min-height: 42px;
}

@media (max-width: 640px) {
    .site-footer .footer-directory-grid {
        gap: 34px 22px;
    }

    .site-footer .footer-directory-group {
        gap: 14px;
        padding-top: 21px;
    }

    .site-footer .footer-directory-heading {
        min-height: 0;
    }
}

/* Final mobile readability pass: stays after every page-specific rule. */
@media (max-width: 640px) {
    html {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .container {
        width: calc(100% - 32px);
    }

    .brand-mark {
        font-size: 21px;
        letter-spacing: .06em;
    }

    .brand-sub {
        font-size: 7px;
        letter-spacing: .38em;
    }

    .nav-link {
        padding: 18px 0;
        font-size: 16px;
        line-height: 1.3;
    }

    .eyebrow,
    .section-kicker,
    .footer-label,
    .poster-kicker,
    .detail-kicker,
    .hero-side-kicker {
        font-size: 9px;
        letter-spacing: .2em;
        line-height: 1.35;
    }

    .page-hero {
        padding: 68px 0 52px;
    }

    .page-hero h1,
    .detail-title,
    .list-head h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 13vw, 4.35rem);
        letter-spacing: -.045em;
        line-height: .88;
    }

    .page-hero p,
    .detail-body p {
        font-size: 14px;
        line-height: 1.75;
    }

    .section {
        padding-top: 58px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        max-width: 100%;
        font-size: clamp(2rem, 10.5vw, 3rem);
        letter-spacing: .02em;
        line-height: .94;
    }

    .section-heading h2::after {
        width: 38px;
        margin: 0 0 7px 10px;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }

    .button {
        min-height: 50px;
        padding: 0 16px;
        border-radius: 5px;
        font-size: 10px;
        letter-spacing: .08em;
    }

    .button-small {
        min-height: 39px;
        padding: 0 12px;
        font-size: 9px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        line-height: .9;
    }

    .hero-title span {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .hero-meta,
    .home-hero-meta {
        gap: 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .hero-description,
    .home-hero-description {
        font-size: 14px;
        line-height: 1.72;
    }

    .home-hero-copy h1 {
        max-width: 100%;
        margin-top: 18px;
        font-size: clamp(2.75rem, 12.5vw, 4.15rem);
        letter-spacing: -.055em;
        line-height: .9;
        white-space: normal;
    }

    .home-hero-tagline {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .home-hero-kicker {
        font-size: 9px;
        letter-spacing: .28em;
    }

    .home-hero-credits {
        font-size: 12px;
        line-height: 1.8;
    }

    .home-similar-heading h2 {
        font-size: clamp(2rem, 10.5vw, 2.85rem);
    }

    .home-similar-info h3 {
        font-size: 1.2rem;
        line-height: 1;
    }

    .home-similar-meta {
        font-size: 10px;
    }

    .poster-title,
    .films-grid .poster-title,
    .series-grid .poster-title,
    .actor-card-premium .poster-title {
        font-size: 1.12rem;
        line-height: 1;
    }

    .poster-meta,
    .films-grid .poster-meta,
    .series-grid .poster-meta {
        font-size: 10px;
        line-height: 1.45;
    }

    .genre-pill {
        font-size: 8px;
    }

    .genre-card.genre-card-premium h3 {
        font-size: 1.45rem;
        line-height: .95;
    }

    .genre-card.genre-card-premium p {
        font-size: 9px;
        line-height: 1.4;
    }

    .collection-card-premium h3 {
        font-size: 2.05rem;
        line-height: .9;
    }

    .collection-card-premium p {
        font-size: 11px;
        line-height: 1.55;
    }

    .series-hero-copy h1 {
        font-size: clamp(2.95rem, 13vw, 4.8rem);
        line-height: .88;
    }

    .series-hero-copy p,
    .films-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .series-catalog-heading h2,
    .films-catalog-heading h2 {
        font-size: clamp(2rem, 10vw, 2.9rem);
    }

    .footer-identity h2,
    .site-footer .footer-identity h2 {
        font-size: clamp(2.8rem, 13vw, 4.7rem);
        line-height: .9;
    }

    .site-footer .footer-identity h2 em {
        font-size: .2em;
        letter-spacing: .24em;
    }

    .site-footer .footer-identity-aside p {
        font-size: 14px;
        line-height: 1.75;
    }

    .site-footer .footer-brand-head .brand-mark {
        font-size: 25px;
    }

    .site-footer .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
    }

    .site-footer .footer-column a {
        font-size: 14px;
        line-height: 1.55;
    }

    .site-footer .footer-newsletter h3 {
        font-size: clamp(2.05rem, 9.5vw, 3.15rem);
        line-height: .92;
    }

    .site-footer .footer-newsletter p {
        font-size: 13px;
        line-height: 1.7;
    }

    .site-footer .newsletter-form input {
        font-size: 13px;
    }

    .footer-directory-heading,
    .footer-directory-group a {
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-directory-word {
        font-size: 21px;
    }

    .footer-cta {
        display: block;
        margin-top: 0;
        padding: 22px 18px 19px;
    }

    .footer-cta-copy h3 {
        font-size: 2rem;
        line-height: .98;
    }

    .footer-cta-copy p {
        font-size: 13px;
        line-height: 1.65;
    }

    .footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        margin-top: 18px;
    }

    .footer-action {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 0 14px;
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .home-similar-info h3 {
        font-size: 1.16rem;
    }

    .footer-cta-copy h3 {
        font-size: 1.8rem;
    }
}
