:root {
    color-scheme: light;
    --orange: #fb923c;
    --orange-deep: #ea580c;
    --pink: #ec4899;
    --purple: #9333ea;
    --cyan: #06b6d4;
    --green: #10b981;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fff7ed;
    --soft-pink: #fdf2f8;
    --border: rgba(251, 146, 60, 0.24);
    --shadow: 0 18px 50px rgba(124, 45, 18, 0.12);
    --shadow-strong: 0 28px 70px rgba(124, 45, 18, 0.18);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 30%, #fff7ed 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.93), rgba(253, 242, 248, 0.93));
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    width: min(var(--container), calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-name {
    font-size: 21px;
    background: linear-gradient(90deg, var(--orange-deep), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 12px 26px rgba(236, 72, 153, 0.25);
    transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

.brand-icon.small {
    width: 38px;
    height: 38px;
}

.brand-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link,
.mobile-link {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 650;
    transition: all 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover {
    color: var(--orange-deep);
    background: rgba(255, 255, 255, 0.68);
}

.nav-link.active,
.mobile-link.active {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.22);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    width: 100%;
    padding: 10px 16px 16px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

main {
    min-height: 60vh;
}

.hero-shell {
    position: relative;
    min-height: 720px;
    padding-top: 68px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink) 55%, var(--purple));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.24), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.20), transparent 28%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.28));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%);
    background-size: 34px 34px;
}

.hero-shell::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, #fff7ed, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
    gap: 42px;
    align-items: center;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.94);
    font-weight: 750;
    letter-spacing: 0.04em;
}

.eyebrow.dark {
    color: var(--orange-deep);
    background: #ffedd5;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    max-width: 850px;
    font-size: clamp(44px, 7vw, 82px);
    text-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.hero-copy p {
    max-width: 720px;
    margin: 24px 0 0;
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255, 255, 255, 0.90);
}

.hero-tags,
.tag-row,
.detail-tags,
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    padding: 7px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions.narrow {
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn.primary {
    color: var(--orange-deep);
    background: #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.btn.glass,
.btn.ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn.ghost.light {
    color: var(--orange-deep);
    background: #fff7ed;
    border-color: #fed7aa;
}

.hero-poster {
    position: relative;
    display: block;
    min-height: 460px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
    isolation: isolate;
}

.hero-poster::before,
.poster::before,
.wide-thumb::before,
.detail-cover::before,
.category-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fed7aa, #f9a8d4 48%, #c4b5fd);
    z-index: -2;
}

.hero-poster img,
.poster img,
.wide-thumb img,
.detail-cover img,
.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08) 55%, transparent);
    pointer-events: none;
}

.hero-play,
.play-mark {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.28);
}

.hero-play {
    width: 76px;
    height: 76px;
    right: 26px;
    bottom: 26px;
    font-size: 30px;
}

.play-mark {
    width: 44px;
    height: 44px;
    left: 16px;
    bottom: 16px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.28s ease;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #fff;
}

.section-wrap {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.feature-strip {
    position: relative;
    z-index: 5;
    margin-top: -54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0;
}

.feature-strip a {
    display: grid;
    gap: 6px;
    min-height: 116px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.20);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-strip a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.feature-strip strong {
    font-size: 22px;
    color: #111827;
}

.feature-strip span {
    color: var(--muted);
}

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

.section-heading.center {
    justify-content: center;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111827;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange-deep);
    font-weight: 800;
}

.text-link:hover {
    color: var(--pink);
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

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

.movie-card:hover .play-mark {
    opacity: 1;
    transform: translateY(0);
}

.movie-card.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #f9a8d4);
}

.large-card .poster {
    aspect-ratio: 16 / 11;
}

.poster img,
.wide-thumb img,
.hero-poster img,
.detail-cover img {
    transition: transform 0.7s ease;
}

.type-badge,
.rank-badge {
    position: absolute;
    top: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.type-badge {
    left: 14px;
    color: var(--orange-deep);
    background: rgba(255, 255, 255, 0.90);
}

.rank-badge {
    right: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--muted);
}

.card-meta a,
.card-meta span {
    display: inline-flex;
    align-items: center;
}

.card-meta a {
    color: var(--orange-deep);
    font-weight: 800;
}

.card-body h3,
.wide-body h3 {
    margin: 0;
    color: #111827;
    line-height: 1.25;
}

.card-body h3 {
    font-size: 19px;
}

.card-body h3 a:hover,
.wide-body h3 a:hover {
    color: var(--orange-deep);
}

.card-body p {
    min-height: 48px;
    margin: 10px 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.tag-row span {
    padding: 5px 9px;
    color: #9a3412;
    background: #ffedd5;
}

.warm-band {
    background: linear-gradient(90deg, #fdf2f8, #fff7ed);
}

.wide-grid,
.ranking-list {
    display: grid;
    gap: 18px;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    overflow: hidden;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.wide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.wide-thumb {
    position: relative;
    min-height: 126px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fed7aa, #f9a8d4);
}

.wide-card:hover .wide-thumb img {
    transform: scale(1.08);
}

.wide-body {
    min-width: 0;
    display: grid;
    align-content: center;
}

.wide-title-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wide-body h3 {
    font-size: 20px;
}

.wide-body p {
    margin: 8px 0 12px;
    color: var(--muted);
}

.ranking-num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.soft-section {
    background: linear-gradient(180deg, #fff7ed, #fff);
}

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

.category-tile,
.category-overview-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.16);
}

.category-tile {
    padding: 24px;
}

.category-title {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 900;
    color: #111827;
}

.category-title:hover {
    color: var(--orange-deep);
}

.category-tile p,
.category-overview-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-links a {
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-main {
    padding-top: 68px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink) 58%, var(--purple));
}

.page-hero.compact {
    min-height: 310px;
}

.page-hero.category-hero,
.page-hero.ranking-hero {
    min-height: 340px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.24), transparent 30%),
        radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.17), transparent 28%),
        rgba(0, 0, 0, 0.14);
}

.page-hero > div {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
}

.page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.filter-panel {
    margin-bottom: 28px;
    display: grid;
    gap: 18px;
}

.search-field {
    position: relative;
}

.search-field span {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 22px;
}

.search-field input {
    width: 100%;
    height: 56px;
    padding: 0 18px 0 52px;
    border: 2px solid rgba(251, 146, 60, 0.22);
    border-radius: 18px;
    color: var(--text);
    background: #fff;
    outline: none;
    box-shadow: 0 12px 30px rgba(124, 45, 18, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-field input:focus {
    border-color: var(--orange);
    box-shadow: 0 16px 40px rgba(251, 146, 60, 0.14);
}

.chip {
    border: 0;
    padding: 10px 16px;
    border-radius: 999px;
    color: #4b5563;
    background: #fff;
    box-shadow: 0 8px 22px rgba(124, 45, 18, 0.06);
    cursor: pointer;
    font-weight: 800;
    transition: all 0.25s ease;
}

.chip:hover {
    color: var(--orange-deep);
    background: #ffedd5;
}

.chip.active {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.20);
}

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

.empty-state {
    display: none;
    margin: 40px auto;
    padding: 34px;
    border-radius: 24px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    box-shadow: var(--shadow);
}

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

.category-overview-card {
    overflow: hidden;
}

.category-overview-card > div {
    padding: 22px;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-cover {
    position: relative;
    min-height: 210px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #fed7aa, #f9a8d4);
}

.category-cover img {
    min-width: 0;
}

.category-cover span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
    font-weight: 900;
}

.detail-main {
    background: linear-gradient(180deg, #fff7ed, #fff 38%, #fff7ed);
}

.breadcrumb {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--orange-deep);
}

.breadcrumb strong {
    color: #111827;
}

.player-section {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #080808;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.26);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 22px 48px rgba(236, 72, 153, 0.28);
    font-size: 28px;
}

.player-start strong {
    font-size: 19px;
}

.player-box.is-playing .player-start {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-hero {
    width: min(var(--container), calc(100% - 32px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.14);
}

.detail-cover {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fed7aa, #f9a8d4);
}

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 58px);
    color: #111827;
}

.one-line {
    margin: 20px 0;
    color: #4b5563;
    font-size: 20px;
}

.fact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.fact-list li {
    padding: 14px;
    border-radius: 16px;
    background: #fff7ed;
}

.fact-list span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.fact-list strong {
    color: #111827;
}

.detail-tags a {
    padding: 8px 12px;
    color: #9a3412;
    background: #ffedd5;
}

.detail-tags a:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.content-columns {
    width: min(var(--container), calc(100% - 32px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.story-card {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(251, 146, 60, 0.12);
}

.story-card h2 {
    margin: 0 0 16px;
    font-size: 28px;
    color: #111827;
}

.story-card p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
}

.accent-card {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.related-wrap {
    padding-top: 56px;
}

.site-footer {
    margin-top: 40px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
}

.footer-brand {
    color: #fff;
    font-size: 21px;
}

.site-footer p {
    margin: 16px 0 0;
    color: #9ca3af;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

.site-footer a:hover {
    color: #fb923c;
}

.footer-bottom {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
    color: #9ca3af;
}

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

@media (max-width: 1080px) {
    .hero-slide,
    .detail-hero,
    .content-columns {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        min-height: 360px;
    }

    .hero-inner {
        min-height: 830px;
    }

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

    .movie-card.large-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .wide-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-shell {
        min-height: 780px;
    }

    .hero-inner {
        min-height: 710px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
        align-content: center;
    }

    .hero-poster {
        min-height: 260px;
        border-radius: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-strip,
    .movie-grid,
    .movie-grid.top-grid,
    .library-grid,
    .wide-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .fact-list {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        margin-top: -36px;
    }

    .section-wrap {
        padding: 54px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .wide-card {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .wide-thumb {
        min-height: 132px;
    }

    .detail-hero {
        padding: 18px;
    }

    .detail-cover {
        min-height: 300px;
    }

    .story-card {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .nav-wrap {
        width: min(100% - 22px, var(--container));
    }

    .brand-name {
        font-size: 18px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-copy p,
    .page-hero p,
    .one-line {
        font-size: 16px;
    }

    .wide-card {
        grid-template-columns: 1fr;
    }

    .wide-thumb {
        aspect-ratio: 16 / 9;
    }
}
