:root {
    --page-bg: #f6f8fc;
    --panel-bg: #ffffff;
    --ink: #111827;
    --muted: #5f6b7a;
    --soft: #e7edf7;
    --line: rgba(17, 24, 39, 0.1);
    --blue: #2563eb;
    --blue-dark: #1e3a8a;
    --green: #16a34a;
    --purple: #7c3aed;
    --orange: #f97316;
    --red: #dc2626;
    --pink: #db2777;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--ink);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    height: 76px;
    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;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), #0f766e);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

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

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    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(--blue);
    background: rgba(37, 99, 235, 0.08);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #edf2ff;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--blue-dark);
    border-radius: 999px;
}

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

.hero-carousel {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #ffffff;
    background: #071426;
}

.hero-bg-stack,
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 5s ease;
}

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

.hero-carousel::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(246, 248, 252, 0), var(--page-bg));
}

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

.hero-copy {
    position: relative;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0 auto auto 0;
    max-width: 760px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-slide h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.hero-slide p {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

.hero-tags,
.detail-meta,
.movie-meta-line,
.tag-row,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-actions,
.hero-control-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.ghost-button,
.wide-link,
.hero-search button,
.page-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.hero-search button,
.page-search button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), #0f766e);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.28);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.wide-link:hover,
.hero-search button:hover,
.page-search button:hover {
    transform: translateY(-2px);
}

.hero-search,
.page-search {
    width: min(620px, 100%);
    margin-top: 30px;
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-search input,
.page-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    border: 1px solid transparent;
    outline: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    padding: 0 18px;
}

.quick-links {
    margin-top: 18px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

.hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.hero-poster-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-thumb {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 22px;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    cursor: pointer;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-thumb.is-active {
    border-color: #ffffff;
    transform: translateY(-4px);
}

.hero-thumb img,
.poster-frame img,
.rank-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.25s ease;
}

.hero-control-row button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    font-size: 30px;
}

.section-block {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 82px 0;
}

.section-light {
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.page-hero h1,
.content-card h2,
.rank-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-heading p,
.page-hero p,
.content-card p,
.rank-card-body p,
.movie-card-body p,
.category-card-main p,
.detail-one-line {
    color: var(--muted);
}

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

.category-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card-main {
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #0f766e);
}

.category-card h3 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.category-card-main p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.86);
}

.category-label {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-bottom: 18px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.category-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    right: -38px;
    top: -38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.tone-green .category-card-main,
.category-hero.tone-green {
    background: linear-gradient(135deg, #16a34a, #0f766e);
}

.tone-purple .category-card-main,
.category-hero.tone-purple {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.tone-orange .category-card-main,
.category-hero.tone-orange {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.tone-red .category-card-main,
.category-hero.tone-red {
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
}

.tone-pink .category-card-main,
.category-hero.tone-pink {
    background: linear-gradient(135deg, #db2777, #7c3aed);
}

.tone-gray .category-card-main,
.category-hero.tone-gray {
    background: linear-gradient(135deg, #334155, #0f172a);
}

.category-preview {
    margin: 0;
    padding: 18px 22px 22px;
    list-style: none;
}

.category-preview li + li {
    margin-top: 8px;
}

.category-preview a {
    color: #334155;
    font-weight: 700;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: var(--shadow);
}

.poster-frame,
.rank-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.8), transparent 34%), linear-gradient(135deg, #1e3a8a, #0f766e);
}

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

.poster-letter {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 72px;
    font-weight: 900;
    z-index: 0;
}

.poster-badge {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.image-missing {
    opacity: 0;
}

.movie-card-body,
.rank-card-body {
    padding: 18px;
}

.movie-meta-line {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.movie-meta-line span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 999px;
    background: #cbd5e1;
}

.movie-card h3,
.rank-card h3 {
    margin: 10px 0 8px;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.movie-card h3 a:hover,
.rank-card h3 a:hover,
.category-preview a:hover {
    color: var(--blue);
}

.movie-card-body p,
.rank-card-body p {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 14px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.tag-row span {
    color: #1d4ed8;
    background: #eff6ff;
}

.rank-panel {
    position: sticky;
    top: 96px;
    border-radius: var(--radius);
    background: #0f172a;
    color: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow);
}

.rank-panel h2,
.rank-panel .section-kicker {
    color: #ffffff;
}

.rank-list {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.rank-number {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), #0f766e);
    color: #ffffff;
    font-weight: 900;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.rank-info {
    grid-column: 2;
    color: #cbd5e1;
    font-size: 12px;
}

.wide-link {
    width: 100%;
    margin-top: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.sub-page {
    padding-top: 76px;
}

.page-hero {
    width: min(1200px, calc(100% - 32px));
    min-height: 300px;
    margin: 34px auto 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    padding: 46px;
    border-radius: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    box-shadow: var(--shadow);
}

.page-hero h1,
.page-hero p,
.page-hero .section-kicker {
    color: #ffffff;
}

.page-hero p {
    max-width: 680px;
    margin-bottom: 0;
}

.small-hero {
    background: linear-gradient(135deg, #1e3a8a, #2563eb 52%, #0f766e);
}

.page-search {
    flex: 0 0 min(450px, 100%);
    margin-top: 0;
}

.filter-bar {
    width: min(1200px, calc(100% - 32px));
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.search-filter {
    grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(160px, 1fr));
}

.filter-bar label {
    display: grid;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.filter-bar input,
.filter-bar select {
    border-color: #dbe4f0;
    background: #f8fafc;
}

.rank-page-list {
    width: min(1000px, calc(100% - 32px));
    margin: 46px auto 90px;
    display: grid;
    gap: 18px;
}

.rank-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.rank-poster {
    border-radius: 20px;
}

.rank-number.big {
    position: absolute;
    z-index: 4;
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
}

.detail-page {
    min-height: 100vh;
    padding-top: 76px;
}

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(246, 248, 252, 0), var(--page-bg));
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    padding: 70px 0 94px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.large-poster {
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.detail-copy h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.07em;
}

.detail-one-line {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
}

.detail-meta span,
.detail-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

.player-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(0, 0, 0, 0.2));
    transition: opacity 0.25s ease;
}

.player-card.is-playing .player-overlay {
    opacity: 0;
}

.player-start {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), #0f766e);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.34);
}

.play-symbol {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 42px;
}

.content-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.content-card p {
    margin-bottom: 0;
    font-size: 16px;
}

.related-section {
    padding-top: 58px;
}

.site-footer {
    margin-top: 30px;
    padding: 46px 0;
    background: #0f172a;
    color: #cbd5e1;
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 40px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-weight: 700;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1100px) {
    .hero-inner,
    .two-column-layout,
    .detail-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 620px;
    }

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

    .rank-panel {
        position: static;
    }

    .page-hero,
    .footer-inner,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .page-hero {
        align-items: start;
        flex-direction: column;
    }
}

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

    .menu-button {
        display: block;
    }

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

    .hero-inner {
        padding-top: 122px;
        gap: 28px;
    }

    .hero-carousel,
    .hero-inner {
        min-height: auto;
    }

    .hero-slide h1,
    .detail-copy h1 {
        letter-spacing: -0.05em;
    }

    .hero-poster-strip,
    .category-grid,
    .movie-grid,
    .compact-grid,
    .filter-bar,
    .search-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .detail-inner {
        padding-top: 42px;
    }

    .large-poster {
        width: min(260px, 70vw);
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner {
        width: min(100% - 22px, 1200px);
    }

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

    .hero-inner,
    .section-block,
    .page-hero,
    .filter-bar,
    .player-section,
    .detail-content,
    .rank-page-list {
        width: min(100% - 22px, 1200px);
    }

    .hero-slide p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-search,
    .page-search,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
    }

    .hero-panel,
    .page-hero,
    .content-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-poster-strip,
    .category-grid,
    .movie-grid,
    .compact-grid,
    .filter-bar,
    .search-filter,
    .detail-content {
        grid-template-columns: 1fr;
    }

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

    .rank-poster {
        max-width: 220px;
    }
}
