:root {
    --bg: #f8fafc;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --card: #ffffff;
    --header: #0f172a;
    --header-soft: #1e293b;
    --red: #ef4444;
    --orange: #f97316;
    --rose: #fb7185;
    --amber: #f59e0b;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.96);
    color: #ffffff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 800;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35);
    font-size: 14px;
}

.brand-text {
    font-size: 21px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fca5a5, #fb923c, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-link {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search {
    display: flex;
    align-items: center;
    width: 320px;
    padding: 4px;
    border-radius: 999px;
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.header-search input,
.mobile-search input,
.inline-search input,
.filter-panel input {
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
}

.header-search input {
    width: 100%;
    padding: 10px 12px;
}

.header-search button,
.mobile-search button,
.inline-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.26);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #1e293b;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 3px;
    background: #ffffff;
}

.mobile-panel {
    display: none;
    padding: 16px 24px 22px;
    background: #111827;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

.mobile-search {
    display: flex;
    padding: 4px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #1e293b;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 11px 13px;
}

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

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 680px;
    margin: 0 auto;
    padding: 90px 24px 110px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 380px;
    align-items: center;
    gap: 56px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    color: #fb7185;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 20px;
    max-width: 760px;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: 19px;
}

.hero-tags,
.detail-tags,
.tag-row,
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-row span,
.filter-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(248, 113, 113, 0.18);
    border: 1px solid rgba(251, 146, 60, 0.28);
    font-size: 12px;
    font-weight: 700;
}

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

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.34);
}

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

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

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

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

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

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    color: #ffffff;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 30px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(90deg, var(--red), var(--orange));
}

.quick-search-band {
    margin-top: -44px;
    position: relative;
    z-index: 8;
    padding: 0 24px;
}

.quick-search-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.quick-search-inner h2 {
    margin: 6px 0 0;
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: -0.03em;
}

.inline-search {
    width: min(520px, 100%);
    display: flex;
    padding: 5px;
    border-radius: 999px;
    background: #0f172a;
}

.inline-search input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.warm-section {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.dark-rank-section {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.35), transparent 34%), #0f172a;
}

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

.section-heading h2 {
    margin: 7px 0 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 640px;
    margin: 10px 0 0;
    color: var(--muted);
}

.dark-rank-section .section-heading p {
    color: #cbd5e1;
}

.section-more,
.text-button {
    color: #ef4444;
    font-weight: 800;
}

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

.category-tile {
    min-height: 230px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span {
    color: #fed7aa;
    font-size: 12px;
    font-weight: 800;
}

.category-tile h3 {
    margin: 8px 0;
    font-size: 25px;
}

.category-tile p {
    margin: 0;
    color: #e2e8f0;
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dark-rank-section .movie-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.74));
}

.play-chip {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--red));
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

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

.movie-meta-line {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.movie-card h3 {
    margin: 8px 0 7px;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark-rank-section .movie-card h3,
.dark-rank-section .movie-meta-line,
.dark-rank-section .movie-card p {
    color: #ffffff;
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: #64748b;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    min-height: 24px;
    color: #9f1239;
    background: #fff1f2;
    border-color: #ffe4e6;
}

.subpage-hero {
    min-height: 360px;
    padding: 96px 24px 72px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.38), transparent 40%), #0f172a;
    background-size: cover;
    background-position: center;
}

.subpage-hero > div {
    max-width: 1280px;
    margin: 0 auto;
}

.subpage-hero h1 {
    max-width: 900px;
    margin: 12px 0;
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.subpage-hero p {
    max-width: 720px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    overflow: hidden;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-visual {
    min-height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.category-overview-visual span {
    color: #fed7aa;
    font-size: 12px;
    font-weight: 800;
}

.category-overview-visual h2 {
    margin: 8px 0 0;
    font-size: 30px;
}

.category-overview-body {
    padding: 24px;
}

.category-overview-body p {
    margin-top: 0;
    color: #64748b;
}

.category-overview-body ul {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.category-overview-body a:hover {
    color: #ef4444;
}

.filter-section {
    padding: 0 24px;
    margin-top: -36px;
    position: relative;
    z-index: 10;
}

.filter-panel {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.filter-panel.large-filter {
    align-items: stretch;
    flex-direction: column;
}

.filter-panel input {
    flex: 1;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: #0f172a;
    border-radius: 16px;
    background: #f1f5f9;
}

.filter-tags span {
    color: #9f1239;
    background: #fff1f2;
    border-color: #ffe4e6;
}

.empty-state {
    display: none;
    margin: 28px 0 0;
    padding: 28px;
    text-align: center;
    color: #64748b;
    border-radius: 18px;
    background: #ffffff;
}

.empty-state.show {
    display: block;
}

.detail-hero {
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.detail-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 24px 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 34px;
    color: #cbd5e1;
    font-size: 14px;
}

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

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

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    background: #0f172a;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

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

.detail-copy h1 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 860px;
    margin: 0 0 22px;
    color: #dbeafe;
    font-size: 20px;
}

.detail-meta-list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.detail-meta-list li {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.detail-meta-list span {
    display: block;
    color: #cbd5e1;
    font-size: 12px;
}

.detail-meta-list strong {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 14px;
}

.player-section {
    padding: 40px 24px 0;
    background: #0f172a;
}

.player-panel {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.48), rgba(15, 23, 42, 0.76));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.big-play {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 18px 36px rgba(239, 68, 68, 0.35);
    font-size: 28px;
}

.player-cover strong {
    font-size: 24px;
}

.player-cover em {
    color: #cbd5e1;
    font-style: normal;
}

.detail-content-section {
    padding-top: 56px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.article-card {
    padding: 32px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.article-card h2 {
    margin: 8px 0 16px;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.article-card p {
    margin: 0;
    color: #475569;
    font-size: 17px;
}

.accent-card {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

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

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 32px;
}

.footer-brand p {
    max-width: 520px;
    color: #94a3b8;
}

.footer-column h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

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

.footer-column a:hover {
    color: #fb7185;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    padding: 18px 24px;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom p {
    margin: 0;
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: none;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.35);
    cursor: pointer;
}

.back-top.show {
    display: block;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 12px;
    }

    .header-search {
        width: 260px;
    }

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

    .full-grid,
    .rank-grid,
    .featured-grid,
    .rank-list-home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 78px;
    }

    .hero-poster {
        width: min(320px, 78vw);
    }

    .quick-search-inner,
    .section-heading,
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .category-overview-grid,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

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

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

    .detail-poster {
        width: min(320px, 84vw);
    }

    .detail-meta-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .header-inner {
        height: 62px;
        padding: 0 16px;
    }

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

    .hero-carousel,
    .hero-content {
        min-height: 620px;
    }

    .hero-content,
    .content-section,
    .warm-section,
    .dark-rank-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .movie-grid,
    .featured-grid,
    .full-grid,
    .rank-grid,
    .rank-list-home,
    .related-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-card p {
        font-size: 12px;
    }

    .subpage-hero {
        min-height: 300px;
        padding: 76px 16px 64px;
    }

    .detail-hero-inner {
        padding: 24px 16px 52px;
    }

    .player-section {
        padding: 24px 16px 0;
    }

    .article-card {
        padding: 24px;
    }
}
