:root {
    --orange: #f97316;
    --orange-dark: #c2410c;
    --amber: #f59e0b;
    --yellow: #facc15;
    --rose: #fb7185;
    --red: #ef4444;
    --gray-950: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--orange), var(--amber), var(--yellow));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.26);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--orange);
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(194, 65, 12, 0.24);
}

.footer-brand .brand-mark {
    background: var(--orange);
    color: var(--white);
}

.brand-text,
.footer-brand div {
    display: grid;
    line-height: 1.2;
}

.brand-text strong,
.footer-brand strong {
    color: var(--white);
    font-size: 24px;
    letter-spacing: 0.04em;
}

.brand-text small {
    color: #fff7ed;
    font-size: 12px;
}

.footer-brand small {
    color: var(--gray-400);
    font-size: 12px;
}

.header-search {
    flex: 1;
    max-width: 430px;
    display: flex;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 11px 16px;
    background: transparent;
    color: var(--gray-900);
}

.header-search button,
.mobile-search button {
    border: 0;
    background: var(--orange);
    color: var(--white);
    padding: 0 18px;
    font-weight: 700;
}

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

.nav-link {
    color: var(--white);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff7ed;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    border: 0;
    color: var(--white);
    font-size: 30px;
    background: transparent;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
}

.mobile-panel.open {
    display: block;
}

.mobile-search {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.mobile-link {
    display: block;
    color: var(--white);
    font-weight: 700;
    padding: 10px 4px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5 42%, #fef3c7 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.22), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(251, 113, 133, 0.18), transparent 28%),
        radial-gradient(circle at 50% 95%, rgba(250, 204, 21, 0.2), transparent 36%);
}

.hero-container {
    position: relative;
    padding: 72px 0 52px;
}

.hero-slider {
    position: relative;
    min-height: 450px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 48px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange-dark);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--gray-950);
}

.hero-copy p {
    max-width: 640px;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.9;
}

.tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags {
    margin: 22px 0;
}

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

.primary-btn,
.ghost-btn,
.text-link,
.light-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: var(--white);
    background: linear-gradient(90deg, var(--orange), var(--amber));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.light-link:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    color: var(--orange-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.ghost-btn.dark {
    background: rgba(31, 41, 55, 0.06);
    color: var(--gray-900);
}

.text-link {
    color: var(--orange-dark);
    background: #fff7ed;
}

.light-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-media {
    position: relative;
    min-height: 430px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(194, 65, 12, 0.28);
    transform: rotate(1deg);
    background: var(--gray-200);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.hero-media:hover img {
    transform: scale(1.08);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 24, 39, 0.76));
}

.hero-glow {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 24px;
    z-index: 2;
}

.hero-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.hero-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--white);
    color: var(--orange-dark);
    font-size: 28px;
    box-shadow: var(--soft-shadow);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    min-height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(194, 65, 12, 0.25);
    box-shadow: none;
}

.hero-dot.active {
    width: 34px;
    background: var(--orange);
}

.hero-thumb-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-thumb-row a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    font-weight: 800;
}

.hero-thumb-row img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.section {
    padding: 74px 0;
}

.section-white {
    background: var(--white);
}

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

.section-fire {
    background: linear-gradient(115deg, #f59e0b, #f97316 50%, #ef4444);
}

.section-head {
    margin-bottom: 30px;
}

.section-head h2 {
    margin: 12px 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 900;
    color: var(--gray-950);
}

.section-head p {
    max-width: 720px;
    color: var(--gray-600);
    line-height: 1.8;
}

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

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

.center-head .section-kicker {
    margin: 0 auto;
}

.center-head p {
    margin: 0 auto;
}

.light-head h2,
.light-head p,
.light-head .section-kicker {
    color: var(--white);
}

.light-head .section-kicker {
    background: rgba(255, 255, 255, 0.18);
}

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

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

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

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

.movie-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(249, 115, 22, 0.34);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

.corner-badge,
.play-badge {
    position: absolute;
    z-index: 2;
}

.corner-badge {
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.72);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.play-badge {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.35);
}

.movie-card-body {
    padding: 16px;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 12px;
}

.movie-meta-line strong {
    color: var(--orange-dark);
}

.movie-card h3 {
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--gray-950);
}

.movie-card p {
    margin: 0 0 12px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.category-card,
.category-tile {
    display: block;
    min-height: 164px;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(249, 115, 22, 0.14);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-card span,
.category-tile span {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-950);
    font-size: 22px;
    font-weight: 900;
}

.category-card p,
.category-tile p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

.category-tile {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    color: var(--white);
    background: var(--gray-900);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span,
.category-tile p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.sub-hero {
    padding: 82px 0 74px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5 54%, #fef3c7);
}

.sub-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 900;
    color: var(--gray-950);
}

.sub-hero p {
    max-width: 820px;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.9;
}

.ranking-hero,
.search-hero,
.category-sub-hero {
    background:
        radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.18), transparent 34%),
        linear-gradient(135deg, #fff7ed, #ffffff 55%, #fef3c7);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 12px;
    padding: 16px;
    margin-bottom: 28px;
    border-radius: var(--radius);
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.16);
}

.filter-input,
.filter-select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(249, 115, 22, 0.24);
    border-radius: 999px;
    outline: 0;
    padding: 0 16px;
    color: var(--gray-900);
    background: var(--white);
}

.empty-result {
    margin: 20px 0 0;
    color: var(--gray-600);
    font-weight: 700;
}

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

.rank-list.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px 120px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.rank-num {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.2);
}

.rank-poster {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 2 / 3;
    background: var(--gray-100);
}

.rank-poster img {
    height: 100%;
    object-fit: cover;
}

.rank-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
}

.rank-card p {
    margin: 0 0 12px;
    color: var(--gray-600);
    line-height: 1.75;
}

.detail-hero {
    padding: 64px 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.18), transparent 28%),
        linear-gradient(135deg, #fff7ed, #ffffff 52%, #fef3c7);
}

.detail-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 44px;
    align-items: center;
}

.detail-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 2 / 3;
    background: var(--gray-100);
    box-shadow: var(--shadow);
}

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

.detail-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--amber));
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.34);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange-dark);
    font-weight: 800;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.detail-intro {
    max-width: 760px;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.9;
}

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

.detail-meta span,
.detail-meta strong {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    color: var(--gray-700);
    font-weight: 800;
}

.detail-meta strong {
    color: var(--orange-dark);
}

.detail-tags {
    margin-bottom: 24px;
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    background: var(--gray-950);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.76));
    z-index: 3;
}

.player-cover.hide {
    display: none;
}

.player-icon {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.32);
    font-size: 36px;
}

.player-cover strong {
    font-size: 22px;
    letter-spacing: 0.08em;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.movie-article,
.side-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.movie-article h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 900;
}

.movie-article p {
    margin: 0 0 26px;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 2;
}

.side-panel dl {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    margin: 0 0 22px;
}

.side-panel dt {
    color: var(--gray-600);
    font-weight: 800;
}

.side-panel dd {
    margin: 0;
    color: var(--gray-900);
}

.next-links {
    display: grid;
    gap: 10px;
}

.next-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7ed;
    color: var(--orange-dark);
    font-weight: 800;
}

.site-footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 36px;
    padding: 50px 0 34px;
}

.site-footer p {
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: var(--white);
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--orange);
}

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

[hidden],
.card-hidden {
    display: none !important;
}

@media (max-width: 1180px) {
    .movie-grid,
    .listing-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .mobile-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-slider {
        min-height: 790px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .hero-media img {
        min-height: 360px;
    }

    .hero-thumb-row,
    .category-grid,
    .category-tile-grid,
    .movie-grid,
    .compact-grid,
    .high-grid,
    .listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rank-list,
    .rank-list.two-col {
        grid-template-columns: 1fr;
    }

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

    .filter-input {
        grid-column: 1 / -1;
    }

    .detail-grid,
    .article-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .hero-container {
        padding: 44px 0 36px;
    }

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

    .hero-copy p,
    .sub-hero p,
    .detail-intro {
        font-size: 16px;
    }

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

    .primary-btn,
    .ghost-btn,
    .text-link,
    .light-link {
        width: 100%;
    }

    .hero-media,
    .hero-media img {
        min-height: 300px;
    }

    .hero-thumb-row {
        display: none;
    }

    .split-head {
        align-items: start;
        flex-direction: column;
    }

    .section {
        padding: 52px 0;
    }

    .movie-grid,
    .compact-grid,
    .high-grid,
    .listing-grid,
    .category-grid,
    .category-tile-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-card {
        grid-template-columns: 56px 88px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .rank-num {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .rank-card h3 {
        font-size: 17px;
    }

    .rank-card p {
        display: none;
    }

    .detail-hero {
        padding: 42px 0;
    }

    .movie-article,
    .side-panel {
        padding: 20px;
    }

    .player-box {
        border-radius: 18px;
    }
}
