:root {
    --ice-50: #f0f9ff;
    --ice-100: #e0f2fe;
    --ice-200: #bae6fd;
    --ice-500: #0ea5e9;
    --ice-600: #0284c7;
    --ice-700: #0369a1;
    --glacier-600: #0891b2;
    --snow-50: #ffffff;
    --snow-100: #fafafa;
    --snow-200: #f4f4f5;
    --snow-300: #e4e4e7;
    --snow-500: #a1a1aa;
    --snow-600: #71717a;
    --snow-700: #52525b;
    --snow-900: #27272a;
    --shadow-soft: 0 20px 60px rgba(2, 132, 199, 0.12);
    --shadow-card: 0 18px 45px rgba(39, 39, 42, 0.10);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--snow-900);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 32rem),
        linear-gradient(180deg, var(--ice-50), var(--snow-50) 42%, var(--snow-100));
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--snow-200);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(39, 39, 42, 0.05);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ice-600), var(--glacier-600));
    box-shadow: 0 12px 26px rgba(2, 132, 199, 0.26);
}

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

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

.desktop-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--snow-700);
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--ice-700);
    background: var(--ice-50);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.header-search input,
.mobile-menu input,
.page-filter input {
    width: 100%;
    border: 1px solid var(--snow-300);
    border-radius: 999px;
    padding: 11px 15px;
    outline: none;
    background: #ffffff;
    color: var(--snow-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-menu input:focus,
.page-filter input:focus {
    border-color: var(--ice-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.header-search button,
.mobile-menu button,
.page-filter button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: #ffffff;
    background: var(--ice-600);
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-menu button:hover,
.page-filter button:hover {
    background: var(--ice-700);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--ice-50);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--ice-700);
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
    border-top: 1px solid var(--snow-200);
}

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

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--snow-700);
    font-weight: 800;
}

.mobile-menu form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

main {
    overflow: hidden;
}

.hero-slider,
.section-block,
.page-hero,
.detail-hero,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.hero-slider {
    padding: 32px 0 18px;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: var(--radius-xl);
    background: var(--snow-900);
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    gap: 42px;
    align-items: center;
    padding: 74px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.90), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.26)),
        var(--hero-bg) center / cover;
    filter: saturate(1.08);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent);
}

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

.hero-copy,
.hero-poster,
.hero-controls {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-copy h1 {
    margin: 22px 0 14px;
    max-width: 800px;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin: 0 0 14px;
    color: var(--ice-100);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 900;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--snow-200);
    font-size: 18px;
    line-height: 1.85;
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags span,
.rank-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--ice-700);
    background: var(--ice-50);
    font-size: 12px;
    font-weight: 800;
}

.hero-copy .hero-tags span,
.detail-copy .detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

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

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

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ice-600), var(--glacier-600));
    box-shadow: 0 16px 30px rgba(2, 132, 199, 0.32);
}

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

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

.hero-poster {
    overflow: hidden;
    display: block;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.88);
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 74px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-controls button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 28px;
    line-height: 1;
    backdrop-filter: blur(8px);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dots button.is-active {
    width: 30px;
    background: #ffffff;
}

.section-block {
    padding: 42px 0;
}

.section-tight {
    padding-top: 28px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--snow-600);
}

.section-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: var(--ice-700);
    background: var(--ice-100);
    font-weight: 900;
}

.section-link {
    margin-left: auto;
    padding: 10px 16px;
    color: var(--ice-700);
    background: var(--ice-50);
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--snow-200);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(39, 39, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: var(--ice-200);
    box-shadow: var(--shadow-card);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--snow-200);
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.poster-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.60));
}

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.88);
    font-size: 12px;
    font-weight: 900;
}

.movie-card-body {
    display: block;
    padding: 17px;
}

.movie-card-body strong {
    display: block;
    overflow: hidden;
    color: var(--snow-900);
    font-size: 18px;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-meta-line,
.movie-one-line {
    display: block;
    color: var(--snow-600);
    font-size: 13px;
    line-height: 1.65;
}

.movie-meta-line {
    overflow: hidden;
    margin-top: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-one-line {
    display: -webkit-box;
    min-height: 43px;
    margin-top: 8px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 14px;
}

.category-panel {
    position: relative;
    padding: 38px;
    border: 1px solid var(--ice-100);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.96), rgba(255, 255, 255, 0.96));
    box-shadow: var(--shadow-soft);
}

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

.category-tile {
    min-height: 118px;
    padding: 20px;
    border: 1px solid var(--ice-100);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: var(--ice-200);
}

.category-tile span {
    display: block;
    color: var(--snow-900);
    font-size: 18px;
    font-weight: 900;
}

.category-tile em {
    display: block;
    margin-top: 8px;
    color: var(--snow-600);
    font-style: normal;
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
    padding: 44px;
    border-radius: var(--radius-xl);
    background: var(--snow-900);
    color: #ffffff;
    box-shadow: var(--shadow-card);
}

.showcase-copy h2 {
    margin: 22px 0 14px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.showcase-copy p {
    margin: 0 0 24px;
    color: var(--snow-300);
    line-height: 1.8;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 56px 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--snow-900);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ice-600), var(--glacier-600));
    font-weight: 900;
}

.rank-item img {
    width: 76px;
    height: 102px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-copy {
    min-width: 0;
}

.rank-copy strong,
.rank-copy span,
.rank-copy em {
    display: block;
}

.rank-copy strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 17px;
}

.rank-copy > span {
    margin-top: 4px;
    color: var(--snow-600);
    font-size: 13px;
}

.rank-copy em {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: var(--snow-700);
    font-size: 13px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-tags {
    margin-top: 9px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    padding: 62px;
    border-radius: var(--radius-xl);
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.54)),
        var(--hero-bg, linear-gradient(135deg, #0369a1, #0f172a)) center / cover;
    box-shadow: var(--shadow-soft);
}

.slim-hero {
    background: linear-gradient(135deg, var(--snow-900), #0f172a 50%, var(--ice-700));
}

.page-hero h1 {
    margin: 22px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--snow-200);
    font-size: 17px;
    line-height: 1.85;
}

.page-filter {
    display: flex;
    gap: 10px;
    max-width: 580px;
    margin-top: 26px;
}

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

.category-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--snow-200);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(39, 39, 42, 0.06);
}

.category-cover {
    overflow: hidden;
    border-radius: 18px;
}

.category-cover img {
    width: 100%;
    height: 202px;
    object-fit: cover;
}

.category-card h2 {
    margin: 4px 0 8px;
    font-size: 24px;
}

.category-card p {
    margin: 0;
    color: var(--snow-600);
    line-height: 1.7;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.category-samples a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--ice-700);
    background: var(--ice-50);
    font-size: 13px;
    font-weight: 800;
}

.text-button {
    padding: 9px 14px;
    color: #ffffff;
    background: var(--ice-600);
}

.full-rank-list .rank-item {
    grid-template-columns: 70px 90px minmax(0, 1fr);
    padding: 16px;
}

.full-rank-list .rank-item img {
    width: 90px;
    height: 120px;
}

.movie-card-compact .poster-wrap img {
    aspect-ratio: 4 / 5;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
    margin-top: 32px;
    padding: 54px;
    border-radius: var(--radius-xl);
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.30)),
        var(--hero-bg) center / cover;
    box-shadow: var(--shadow-card);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

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

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

.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.detail-line {
    margin: 16px 0 0;
    color: var(--ice-100);
    font-size: 18px;
    font-weight: 800;
}

.detail-intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--snow-200);
    font-size: 17px;
    line-height: 1.85;
}

.detail-copy .primary-button {
    margin-top: 26px;
}

.player-section {
    scroll-margin-top: 86px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #020617;
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.34);
}

.video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.12), rgba(2, 6, 23, 0.36));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ice-600), var(--glacier-600));
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.40);
    font-size: 34px;
    text-indent: 4px;
}

.detail-article article {
    padding: 34px;
    border: 1px solid var(--snow-200);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(39, 39, 42, 0.06);
}

.detail-article h2 {
    margin: 0 0 12px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.detail-article h2:not(:first-child) {
    margin-top: 28px;
}

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

.empty-state {
    display: none;
    padding: 30px;
    border-radius: var(--radius-md);
    color: var(--snow-600);
    text-align: center;
    background: #ffffff;
}

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

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding: 34px 0 46px;
    border-top: 1px solid var(--snow-200);
    color: var(--snow-600);
}

.site-footer strong {
    display: block;
    color: var(--snow-900);
    font-size: 20px;
    margin-bottom: 8px;
}

.site-footer p {
    max-width: 620px;
    margin: 0;
    line-height: 1.7;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.site-footer nav a {
    color: var(--snow-700);
    font-weight: 800;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--ice-600);
    box-shadow: 0 14px 34px rgba(2, 132, 199, 0.26);
    cursor: pointer;
    z-index: 40;
}

.back-top.is-visible {
    display: grid;
    place-items: center;
}

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

    .hero-slide {
        grid-template-columns: 1fr 280px;
        padding: 48px;
    }

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

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

    .detail-hero {
        grid-template-columns: 260px minmax(0, 1fr);
        padding: 42px;
    }
}

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 28px;
        padding: 34px;
    }

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

    .hero-controls {
        left: 34px;
        bottom: 28px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-link {
        display: none;
    }

    .card-grid-four,
    .card-grid-three,
    .category-grid,
    .category-list-grid,
    .split-showcase,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .category-panel,
    .page-hero,
    .detail-hero,
    .split-showcase {
        padding: 28px;
    }

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

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

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 64px;
    }

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

    .hero-slider,
    .section-block,
    .page-hero,
    .detail-hero,
    .site-footer {
        width: min(100% - 24px, 1180px);
    }

    .hero-stage {
        min-height: 760px;
        border-radius: 22px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-intro {
        font-size: 15px;
    }

    .hero-actions,
    .page-filter,
    .mobile-menu form {
        flex-direction: column;
    }

    .primary-button,
    .ghost-button,
    .page-filter button,
    .mobile-menu button {
        width: 100%;
    }

    .card-grid-four,
    .card-grid-three {
        grid-template-columns: 1fr;
    }

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

    .category-cover img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .rank-item,
    .full-rank-list .rank-item {
        grid-template-columns: 46px 74px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .rank-number {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .rank-item img,
    .full-rank-list .rank-item img {
        width: 74px;
        height: 98px;
    }

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