:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --line: rgba(34, 211, 238, 0.22);
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --orange: #fb923c;
    --green: #34d399;
    --pink: #f472b6;
    --shadow-cyan: 0 24px 70px rgba(8, 145, 178, 0.25);
    --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.45);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 30rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 26rem),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 40px rgba(8, 145, 178, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon,
.footer-brand span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    color: #082f49;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.brand-text strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.04em;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.header-search {
    position: relative;
    display: flex;
    flex: 1;
    max-width: 520px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    overflow: hidden;
}

.header-search input,
.mobile-search input,
.page-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.header-search input {
    padding: 12px 18px;
}

.header-search button,
.mobile-search button,
.page-search button,
.filter-bar button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    cursor: pointer;
}

.header-search button {
    padding: 0 18px;
}

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

.desktop-nav a,
.mobile-panel a {
    color: var(--muted-strong);
    padding: 10px 14px;
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--cyan);
    background: rgba(15, 23, 42, 0.8);
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 14px 16px 20px;
    background: rgba(2, 6, 23, 0.98);
}

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

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

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.mobile-search input {
    padding: 12px 16px;
}

.mobile-search button {
    padding: 0 16px;
}

.hero-slider {
    position: relative;
    height: min(82vh, 780px);
    min-height: 560px;
    overflow: hidden;
    background: var(--bg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.2s ease;
}

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero-overlay,
.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.86)),
        linear-gradient(0deg, var(--bg), transparent 45%, rgba(2, 6, 23, 0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 58px;
    height: 100%;
    padding-top: 40px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, #ffffff, #cffafe, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p,
.page-hero p,
.detail-copy .one-line {
    margin: 24px 0 0;
    color: var(--muted-strong);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-tags,
.detail-meta,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-tags span,
.detail-meta span,
.detail-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.72);
}

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

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

.primary-button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: var(--shadow-cyan);
}

.ghost-button {
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: var(--text);
    background: rgba(15, 23, 42, 0.7);
}

.ghost-button.small {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.01);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(34, 211, 238, 0.32);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-dark), var(--shadow-cyan);
}

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

.hero-poster:hover img {
    transform: scale(1.07);
}

.hero-poster span,
.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: white;
    background: rgba(34, 211, 238, 0.88);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.15);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.content-section {
    padding: 58px 0;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-more {
    color: var(--cyan);
    font-weight: 700;
}

.horizontal-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 18px;
    scrollbar-width: thin;
}

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

.movie-grid-home {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.movie-card,
.media-card,
.rank-card,
.category-tile,
.category-overview-card,
.detail-side-card,
.detail-article,
.player-shell,
.podium-card {
    border: 1px solid rgba(34, 211, 238, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.86));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.movie-card {
    display: block;
    border-radius: 22px;
    padding: 10px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.media-card:hover,
.rank-card:hover,
.category-tile:hover,
.podium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: var(--shadow-cyan);
}

.poster-wrap,
.media-thumb,
.rank-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(59, 130, 246, 0.08));
}

.poster-wrap {
    aspect-ratio: 2 / 3;
}

.poster-wrap img,
.media-thumb img,
.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.75), transparent 45%);
}

.movie-card .play-float,
.media-card .play-float {
    opacity: 0;
    width: 48px;
    height: 48px;
    transition: opacity 0.25s ease;
}

.movie-card:hover .play-float,
.media-card:hover .play-float {
    opacity: 1;
}

.year-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: white;
    font-size: 12px;
    background: rgba(2, 6, 23, 0.82);
}

.movie-title {
    display: block;
    margin: 12px 4px 4px;
    font-weight: 800;
    line-height: 1.35;
}

.movie-meta {
    display: block;
    margin: 0 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.movie-tags {
    gap: 6px;
    margin: 10px 4px 0;
}

.movie-tags span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 12px;
}

.media-card {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 16px;
    align-items: stretch;
    border-radius: 22px;
    padding: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.media-thumb {
    aspect-ratio: 16 / 10;
}

.media-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.media-info strong,
.rank-meta strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.media-info em,
.rank-meta em,
.timeline-item em,
.podium-card em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.media-info small,
.rank-meta small {
    display: block;
    margin-top: 8px;
    color: var(--muted-strong);
    line-height: 1.55;
}

.spotlight-band {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(2, 6, 23, 0.55));
    border-top: 1px solid rgba(34, 211, 238, 0.08);
    border-bottom: 1px solid rgba(34, 211, 238, 0.08);
}

.category-grid,
.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.category-tile {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    padding: 22px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile small,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.65;
}

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

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
}

.masonry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.rank-panel {
    position: sticky;
    top: 100px;
    align-self: start;
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 28px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.72);
}

.rank-panel h2 {
    margin: 0 0 18px;
}

.rank-list {
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.rank-row > span,
.rank-number,
.podium-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), #eab308);
}

.rank-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    border-radius: 18px;
    padding: 10px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-thumb {
    aspect-ratio: 16 / 10;
}

.timeline-list {
    display: grid;
    gap: 18px;
    border-left: 2px solid rgba(34, 211, 238, 0.2);
    padding-left: 28px;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 16px;
    align-items: center;
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 4px solid var(--bg);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    transform: translateY(-50%);
}

.timeline-item img {
    width: 118px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(34, 211, 238, 0.16);
    background: radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.18), transparent 30rem), var(--bg);
}

.compact-hero .container {
    padding: 92px 0 58px;
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(38px, 7vw, 62px);
}

.page-search {
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(760px, 100%);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
}

.page-search input {
    padding: 16px 22px;
}

.page-search button {
    padding: 0 24px;
}

.category-overview-card {
    border-radius: 26px;
    padding: 20px;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-overview-head span {
    font-size: 22px;
    font-weight: 900;
}

.category-overview-head strong {
    color: var(--cyan);
}

.mini-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.mini-card-row .movie-card {
    padding: 6px;
    border-radius: 16px;
}

.mini-card-row .movie-title,
.mini-card-row .movie-meta,
.mini-card-row .movie-tags {
    display: none;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 160px auto;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(34, 211, 238, 0.16);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.filter-bar input,
.filter-bar select {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.68);
}

.filter-bar button {
    min-height: 44px;
    border-radius: 14px;
    padding: 0 18px;
}

.result-count,
.search-summary {
    color: var(--muted);
    margin-bottom: 22px;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.podium-card {
    position: relative;
    display: grid;
    gap: 12px;
    border-radius: 26px;
    padding: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.podium-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
}

.podium-card strong {
    font-size: 20px;
}

.full-rank-list .large-rank {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    padding: 12px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.46);
}

.full-rank-list .rank-card {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

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

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0 72px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--cyan);
}

.detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

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

.detail-copy h1 {
    font-size: clamp(36px, 6vw, 64px);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
}

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

.player-note {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 13px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
}

.detail-text-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

.detail-article,
.detail-side-card {
    border-radius: 26px;
    padding: 28px;
}

.detail-article h2,
.detail-side-card h3 {
    margin: 0 0 16px;
    font-size: 24px;
}

.detail-article p {
    margin: 0 0 28px;
    color: var(--muted-strong);
    line-height: 1.9;
    font-size: 16px;
}

.detail-side-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    margin: 0;
}

.detail-side-card dt {
    color: var(--muted);
}

.detail-side-card dd {
    margin: 0;
    color: var(--text);
}

.detail-side-card a {
    color: var(--cyan);
}

.site-footer {
    margin-top: 60px;
    border-top: 1px solid rgba(34, 211, 238, 0.16);
    background: rgba(2, 6, 23, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1fr;
    gap: 28px;
    padding: 46px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

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

.site-footer h3 {
    margin: 0 0 14px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

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

.footer-links a {
    color: var(--muted-strong);
}

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

.footer-bottom {
    border-top: 1px solid rgba(34, 211, 238, 0.1);
    padding: 18px 16px;
    color: var(--muted);
    text-align: center;
}

.is-hidden {
    display: none !important;
}

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

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero-content,
    .detail-grid,
    .split-layout,
    .detail-text-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .rank-panel {
        position: static;
    }

    .editor-grid,
    .dual-grid,
    .podium-grid {
        grid-template-columns: 1fr;
    }

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

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

    .header-inner {
        min-height: 66px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero-slider {
        min-height: 680px;
        height: auto;
    }

    .hero-content {
        align-content: center;
        gap: 24px;
        padding: 82px 0 80px;
    }

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

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

    .content-section {
        padding: 40px 0;
    }

    .section-head {
        display: grid;
    }

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

    .movie-card {
        border-radius: 18px;
        padding: 7px;
    }

    .media-card,
    .rank-card,
    .timeline-item,
    .full-rank-list .large-rank {
        grid-template-columns: 1fr;
    }

    .media-thumb,
    .rank-thumb,
    .timeline-item img {
        width: 100%;
    }

    .detail-poster {
        width: min(240px, 80vw);
    }

    .detail-hero-inner {
        padding: 36px 0 48px;
    }

    .player-note {
        position: static;
        border-radius: 0;
    }

    .page-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .page-search button {
        min-height: 48px;
    }

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