:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffaf5;
    --text: #111827;
    --muted: #6b7280;
    --line: #fed7aa;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --red: #dc2626;
    --pink: #db2777;
    --shadow: 0 20px 45px rgba(124, 45, 18, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 46%, #fff7ed 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(251, 146, 60, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 30px rgba(124, 45, 18, 0.06);
}

.nav-shell {
    width: min(1200px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.34);
}

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    color: #374151;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--orange-dark);
    background: #ffedd5;
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 6px;
    transition: border 0.2s ease, background 0.2s ease;
}

.header-search:focus-within,
.mobile-search:focus-within {
    border-color: rgba(249, 115, 22, 0.55);
    background: #ffffff;
}

.header-search input,
.mobile-search input {
    width: 210px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 10px 8px 14px;
    color: var(--text);
}

.header-search button,
.mobile-search button,
.primary-btn,
.secondary-btn,
.filter-box button {
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.header-search button,
.mobile-search button {
    padding: 8px 14px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
}

.secondary-btn {
    color: var(--orange-dark);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.1);
}

.header-search button:hover,
.mobile-search button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.filter-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(234, 88, 12, 0.32);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #111827;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.hero-slider {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316 0%, #dc2626 48%, #db2777 100%);
}

.hero-bg,
.hero-bg-image,
.hero-noise,
.hero-mask {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    filter: saturate(1.08);
    transition: opacity 0.7s ease, transform 4s ease;
}

.hero-bg-image.is-active {
    opacity: 0.34;
    transform: scale(1);
}

.hero-mask {
    background:
        radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.24), transparent 34%),
        linear-gradient(90deg, rgba(124, 45, 18, 0.92), rgba(153, 27, 27, 0.72) 45%, rgba(17, 24, 39, 0.52));
}

.hero-noise {
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 58px 58px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    min-height: 690px;
    margin: 0 auto;
    padding: 96px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 44px;
    align-items: center;
}

.hero-eyebrow,
.section-eyebrow,
.kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: #9a3412;
    background: #ffedd5;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.hero-panel {
    display: none;
    animation: fadeUp 0.45s ease both;
}

.hero-panel.is-active {
    display: block;
}

.hero-panel h1 {
    max-width: 760px;
    margin: 22px 0 20px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-panel p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
}

.hero-meta span,
.meta-pills span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    padding: 7px 11px;
    backdrop-filter: blur(10px);
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-feature-card {
    position: relative;
    display: none;
    min-height: 460px;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.38);
    backdrop-filter: blur(16px);
}

.hero-feature-card.is-active {
    display: block;
    animation: floatIn 0.5s ease both;
}

.hero-feature-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.76));
}

.hero-card-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
}

.hero-card-copy strong {
    display: block;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.hero-card-copy span {
    color: rgba(255, 255, 255, 0.82);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

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

.section,
.page-hero,
.detail-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.section-title {
    margin: 10px 0 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 700px;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 14px 38px rgba(124, 45, 18, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 24px 48px rgba(124, 45, 18, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.72));
    opacity: 0.82;
}

.play-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 34px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.movie-info {
    padding: 18px;
}

.movie-meta-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 900;
}

.movie-info h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.movie-info h3 a:hover {
    color: var(--orange-dark);
}

.movie-info p {
    min-height: 45px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

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

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

.topic-card {
    position: relative;
    overflow: hidden;
    min-height: 185px;
    padding: 24px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #dc2626 55%, #db2777);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.topic-card:nth-child(2n) {
    background: linear-gradient(135deg, #ea580c, #f97316 48%, #fb923c);
}

.topic-card:nth-child(3n) {
    background: linear-gradient(135deg, #111827, #dc2626 64%, #f97316);
}

.topic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(124, 45, 18, 0.2);
}

.topic-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -42px;
    top: -42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.topic-card h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 26px;
    z-index: 1;
}

.topic-card p,
.topic-card span {
    position: relative;
    z-index: 1;
}

.topic-card p {
    color: rgba(255, 255, 255, 0.82);
}

.topic-card span {
    display: inline-flex;
    margin-top: 18px;
    font-weight: 900;
}

.rank-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.rank-highlight {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border-radius: 34px;
    background: #111827;
    box-shadow: var(--shadow);
}

.rank-highlight img {
    width: 100%;
    aspect-ratio: 16 / 19;
    object-fit: cover;
    opacity: 0.86;
}

.rank-highlight-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #ffffff;
}

.rank-highlight-copy strong {
    display: block;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-item a {
    display: grid;
    grid-template-columns: 56px 72px 1fr 24px;
    gap: 16px;
    align-items: center;
    min-height: 92px;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 12px 28px rgba(124, 45, 18, 0.07);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.rank-item a:hover {
    transform: translateX(5px);
    border-color: rgba(249, 115, 22, 0.42);
    box-shadow: 0 18px 34px rgba(124, 45, 18, 0.12);
}

.rank-number {
    color: var(--orange-dark);
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    width: 72px;
    height: 68px;
    border-radius: 16px;
    object-fit: cover;
}

.rank-copy {
    min-width: 0;
}

.rank-copy strong,
.rank-copy em {
    display: block;
}

.rank-copy strong {
    overflow: hidden;
    font-size: 17px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.rank-arrow {
    color: var(--orange-dark);
    font-size: 34px;
    line-height: 1;
}

.page-hero {
    padding: 72px 0 30px;
}

.page-hero-card {
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 36px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 24%, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(135deg, #f97316, #dc2626 54%, #db2777);
    box-shadow: var(--shadow);
}

.page-hero-card h1 {
    max-width: 800px;
    margin: 14px 0 10px;
    font-size: clamp(38px, 5.5vw, 70px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.page-hero-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.filter-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 0 0 28px;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: 0 12px 30px rgba(124, 45, 18, 0.08);
}

.filter-box input {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 16px;
    background: #fff7ed;
    padding: 14px 16px;
}

.filter-box button {
    padding: 0 22px;
}

.empty-state {
    display: none;
    padding: 40px;
    text-align: center;
    color: var(--muted);
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.18);
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop,
.detail-backdrop img,
.detail-backdrop::after {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: blur(1px) saturate(1.1);
}

.detail-backdrop::after {
    content: "";
    background:
        radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.3), transparent 34%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.76) 52%, rgba(17, 24, 39, 0.42));
}

.detail-shell {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    padding: 72px 0 58px;
    display: grid;
    grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.detail-intro {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

.meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.meta-pills span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 12px;
    backdrop-filter: blur(10px);
}

.player-card {
    overflow: hidden;
    border-radius: 32px;
    background: #111827;
    box-shadow: var(--shadow);
}

.player-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    background: #000000;
}

.player-stage video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background:
        radial-gradient(circle at center, rgba(249, 115, 22, 0.28), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.76));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-overlay-inner {
    display: grid;
    place-items: center;
    gap: 14px;
}

.play-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 32px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 22px 42px rgba(234, 88, 12, 0.44);
}

.play-overlay strong {
    font-size: 22px;
}

.player-caption {
    padding: 22px 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.player-caption h2 {
    margin: 0 0 8px;
}

.player-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.prose-card {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.prose-block {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 14px 34px rgba(124, 45, 18, 0.08);
}

.prose-block h2 {
    margin: 0 0 12px;
    font-size: 26px;
    letter-spacing: -0.04em;
}

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

.site-footer {
    margin-top: 72px;
    background: #111827;
    color: #ffffff;
}

.footer-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
}

.footer-brand {
    font-size: 22px;
}

.footer-shell p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 22px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 16px 32px rgba(234, 88, 12, 0.3);
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .site-header.is-open .mobile-panel {
        display: block;
    }

    .hero-content,
    .detail-shell,
    .rank-panel,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 72px;
    }

    .hero-feature-card {
        min-height: 380px;
    }

    .hero-feature-card img {
        height: 380px;
    }

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

    .rank-highlight {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        height: 66px;
    }

    .brand-text {
        font-size: 19px;
    }

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

    .hero-content {
        padding: 46px 0;
        gap: 28px;
    }

    .hero-panel h1 {
        margin-top: 16px;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .section {
        padding: 46px 0;
    }

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

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

    .movie-info {
        padding: 14px;
    }

    .movie-info h3 {
        font-size: 16px;
    }

    .movie-info p {
        min-height: 0;
    }

    .filter-box {
        grid-template-columns: 1fr;
    }

    .detail-shell {
        padding-top: 46px;
        gap: 26px;
    }

    .detail-poster {
        max-width: 250px;
    }

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

    .rank-item a {
        grid-template-columns: 42px 60px 1fr 18px;
        gap: 10px;
    }

    .rank-number {
        font-size: 18px;
    }

    .rank-item img {
        width: 60px;
        height: 60px;
    }

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

@media (max-width: 460px) {
    .movie-grid,
    .topic-grid {
        grid-template-columns: 1fr;
    }

    .hero-feature-card {
        min-height: 320px;
        border-radius: 26px;
    }

    .hero-feature-card img {
        height: 320px;
    }

    .page-hero-card,
    .prose-block,
    .player-card {
        border-radius: 24px;
    }
}
