:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --orange-900: #7c2d12;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(120, 53, 15, 0.12);
    --shadow-lg: 0 20px 45px rgba(120, 53, 15, 0.2);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--amber-50), var(--white));
}

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, 251, 235, 0.94);
    border-bottom: 1px solid var(--amber-200);
    box-shadow: 0 4px 16px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner,
.detail-inner,
.content-section,
.page-shell .page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--amber-900);
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
    box-shadow: 0 8px 18px rgba(217, 119, 6, 0.28);
    font-size: 14px;
}

.logo-text {
    font-size: 21px;
    letter-spacing: 0.02em;
}

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

.nav-link,
.mobile-link {
    color: var(--amber-800);
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--amber-600);
}

.top-search,
.mobile-search {
    display: flex;
    align-items: center;
}

.top-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    min-height: 40px;
    border: 1px solid var(--amber-300);
    background: var(--white);
    color: var(--gray-900);
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-search input {
    width: 230px;
    border-radius: 10px 0 0 10px;
    padding: 0 14px;
}

.top-search button,
.mobile-search button {
    min-height: 40px;
    border: none;
    padding: 0 16px;
    color: var(--white);
    background: var(--amber-600);
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.top-search button:hover,
.mobile-search button:hover {
    background: var(--amber-700);
}

.menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--amber-800);
    font-size: 28px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-search input {
    width: 100%;
    flex: 1;
    border-radius: 10px 0 0 10px;
    padding: 0 14px;
}

.mobile-nav {
    display: grid;
    gap: 12px;
    padding-top: 16px;
}

.site-main {
    min-height: 60vh;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 760px;
    margin-left: max(16px, calc((100% - 1180px) / 2));
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: var(--amber-300);
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 660px;
    margin: 0 0 24px;
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.8;
}

.hero-meta,
.detail-meta,
.movie-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta span,
.detail-meta span,
.detail-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.hero-tags,
.detail-tags,
.movie-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.detail-tags span,
.movie-card__tags span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--amber-100);
    color: var(--amber-800);
    font-size: 13px;
    font-weight: 700;
}

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

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

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

.button-primary {
    background: var(--amber-600);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.3);
}

.button-primary:hover {
    background: var(--amber-700);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.button-soft {
    background: var(--amber-100);
    color: var(--amber-800);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.52);
    cursor: pointer;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow--prev {
    left: 24px;
}

.hero-arrow--next {
    right: 24px;
}

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

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

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

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

.intro-panel,
.warm-panel {
    margin-top: 56px;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--amber-100), #ffedd5);
    box-shadow: var(--shadow);
}

.intro-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.intro-copy h2,
.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-article h2,
.category-overview-card h2,
.ranking-item h2 {
    margin: 0;
    color: var(--gray-900);
}

.intro-copy h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 10px;
}

.intro-copy p,
.section-heading p,
.page-hero div,
.category-overview-card p,
.detail-lead,
.detail-article p,
.ranking-item p,
.movie-card__body p {
    color: var(--gray-700);
    line-height: 1.8;
}

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

.section-heading h2 {
    font-size: clamp(26px, 4vw, 38px);
}

.section-heading p {
    margin: 8px 0 0;
}

.section-heading > a,
.text-link {
    color: var(--amber-600);
    font-weight: 800;
}

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

.movie-grid--listing {
    align-items: stretch;
}

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--gray-900);
}

.movie-card--wide .movie-card__poster {
    aspect-ratio: 16 / 10;
}

.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.movie-card__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.movie-card:hover .movie-card__shade {
    background: rgba(0, 0, 0, 0.38);
}

.movie-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .movie-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-card__body {
    padding: 18px;
}

.movie-card__body h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card__body h3 a:hover {
    color: var(--amber-600);
}

.movie-card__body p {
    min-height: 50px;
    margin: 0 0 14px;
    font-size: 14px;
}

.movie-card__meta {
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-card__tags span {
    padding: 5px 9px;
    font-size: 12px;
}

.category-section {
    padding-top: 16px;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 22px;
    border-radius: 20px;
    color: var(--white);
    background: var(--gray-900);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.86));
}

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

.category-tile span,
.category-tile p {
    position: relative;
    z-index: 1;
}

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

.category-tile p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

.ranking-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 22px;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--amber-900), var(--orange-900));
    box-shadow: var(--shadow-lg);
}

.section-heading--dark h2,
.section-heading--dark p,
.section-heading--dark a {
    color: var(--white);
}

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

.rank-card {
    display: grid;
    grid-template-columns: 44px 68px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 92px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.rank-card span {
    font-size: 24px;
    color: var(--amber-300);
    font-weight: 900;
}

.rank-card img {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-card strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-card em {
    display: block;
    margin-top: 4px;
    color: var(--amber-100);
    font-style: normal;
    font-size: 13px;
}

.page-shell {
    padding: 48px 0 20px;
}

.page-hero {
    margin-bottom: 20px;
    padding: 42px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--amber-100), var(--white));
    box-shadow: var(--shadow);
}

.page-hero--dark {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-900), var(--orange-900));
}

.page-hero--dark h1,
.page-hero--dark div,
.page-hero--dark p {
    color: var(--white);
}

.page-hero > p {
    margin: 0 0 10px;
    color: var(--amber-700);
    font-weight: 850;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
}

.page-hero div {
    max-width: 780px;
    margin-top: 14px;
    font-size: 17px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 1fr));
    gap: 14px;
    padding: 18px;
    margin-bottom: 26px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.filter-panel label {
    display: grid;
    gap: 8px;
}

.filter-panel span {
    color: var(--amber-800);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border-radius: 12px;
    padding: 0 12px;
}

.top-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.empty-state {
    display: none;
    text-align: center;
    padding: 56px 0;
    color: var(--gray-500);
    font-size: 18px;
}

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

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

.category-overview-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.category-overview-card__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: var(--gray-900);
}

.category-overview-card__images img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.category-overview-card__body {
    padding: 22px;
}

.category-overview-card h2 {
    font-size: 22px;
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 70px 110px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.ranking-number {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--white);
    background: var(--amber-600);
    font-size: 20px;
    font-weight: 900;
}

.ranking-thumb img {
    width: 110px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-item h2 {
    font-size: 21px;
    margin-bottom: 8px;
}

.ranking-item p {
    margin: 0 0 10px;
}

.detail-page {
    background: linear-gradient(180deg, #111827, #1f2937 560px, var(--amber-50) 560px, var(--white));
}

.detail-stage {
    padding: 34px 0 28px;
    background: linear-gradient(180deg, var(--gray-900), var(--gray-800));
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--amber-100);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--amber-300);
}

.player-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--black);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--black);
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: var(--black);
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--amber-600);
    box-shadow: 0 16px 34px rgba(217, 119, 6, 0.36);
    font-size: 34px;
}

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

.detail-content {
    padding: 34px 0 60px;
}

.detail-info {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    padding: 32px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.detail-cover img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-copy h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
}

.detail-lead {
    margin: 16px 0 18px;
    font-size: 18px;
}

.detail-copy .detail-meta span,
.detail-copy .detail-meta a {
    color: var(--amber-900);
    background: var(--amber-100);
}

.detail-tags {
    margin-top: 20px;
}

.detail-article {
    margin-top: 26px;
    padding: 32px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.detail-article h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 26px;
}

.detail-article h2 + p {
    margin-top: 0;
}

.related-section {
    width: 100%;
    padding-bottom: 0;
}

.site-footer {
    color: var(--amber-50);
    background: var(--amber-900);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 44px 0;
}

.logo--footer {
    color: var(--white);
}

.footer-brand p,
.footer-links a,
.footer-bottom {
    color: var(--amber-100);
}

.footer-brand p {
    max-width: 420px;
    line-height: 1.8;
}

.footer-links h2 {
    margin: 0 0 14px;
    color: var(--amber-300);
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.2);
    padding: 18px 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 40;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .top-search {
        display: none;
    }

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

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

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

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

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-content {
        margin-left: 16px;
        padding-right: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .intro-panel,
    .section-heading,
    .footer-inner,
    .detail-info {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .ranking-item {
        grid-template-columns: 54px 90px minmax(0, 1fr);
    }

    .ranking-thumb img {
        width: 90px;
        height: 68px;
    }

    .detail-info {
        display: grid;
    }

    .detail-cover {
        max-width: 260px;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .footer-inner,
    .detail-inner,
    .content-section,
    .page-shell .page-hero {
        width: min(100% - 22px, 1180px);
    }

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

    .hero {
        min-height: 660px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.92));
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 94px;
    }

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

    .hero p {
        font-size: 16px;
    }

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

    .intro-panel,
    .warm-panel,
    .ranking-section,
    .page-hero,
    .detail-info,
    .detail-article {
        padding: 22px;
        border-radius: 18px;
    }

    .movie-grid,
    .category-grid,
    .rank-grid,
    .category-overview-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .movie-card__poster {
        aspect-ratio: 16 / 10;
    }

    .category-tile {
        min-height: 170px;
    }

    .ranking-item {
        grid-template-columns: 46px 78px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-number {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 16px;
    }

    .ranking-thumb img {
        width: 78px;
        height: 62px;
    }

    .detail-copy h1 {
        font-size: 32px;
    }

    .play-overlay span {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}
