:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --stone-950: #0c0a09;
    --bronze-300: #e6d1c8;
    --bronze-400: #d2bab0;
    --bronze-500: #b99384;
    --bronze-700: #977669;
    --shadow-soft: 0 20px 45px rgba(12, 10, 9, 0.14);
    --shadow-card: 0 12px 30px rgba(12, 10, 9, 0.12);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 14px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--stone-50);
    color: var(--stone-900);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(28, 25, 23, 0.96);
    color: var(--stone-100);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--bronze-400);
    border: 1px solid rgba(210, 186, 176, 0.42);
    border-radius: 16px;
    background: rgba(68, 64, 60, 0.55);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--stone-400);
    font-size: 12px;
}

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

.nav-link {
    color: var(--stone-300);
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bronze-400);
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    color: var(--stone-200);
    border: 0;
    border-radius: 12px;
    background: rgba(68, 64, 60, 0.7);
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(214, 211, 209, 0.12);
}

.mobile-nav .nav-link {
    display: block;
    padding: 12px 0;
}

.hero {
    position: relative;
    height: 62vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--stone-950);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 10, 9, 0.92), rgba(28, 25, 23, 0.68), rgba(12, 10, 9, 0.24)),
        linear-gradient(0deg, rgba(12, 10, 9, 0.82), rgba(12, 10, 9, 0.06));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--stone-100);
    max-width: 720px;
    margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--bronze-400);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-summary {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--stone-200);
    font-size: clamp(17px, 2vw, 22px);
}

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

.primary-button,
.secondary-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    color: var(--stone-950);
    background: var(--bronze-400);
    box-shadow: 0 12px 28px rgba(210, 186, 176, 0.35);
}

.primary-button:hover,
.secondary-button:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.secondary-button {
    color: var(--stone-100);
    border: 1px solid rgba(245, 245, 244, 0.36);
    background: rgba(12, 10, 9, 0.35);
}

.section-more {
    color: var(--stone-900);
    background: var(--stone-100);
    border: 1px solid var(--stone-200);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    color: var(--stone-100);
    border: 1px solid rgba(245, 245, 244, 0.22);
    border-radius: 999px;
    background: rgba(12, 10, 9, 0.45);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(245, 245, 244, 0.38);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 30px;
    background: var(--bronze-400);
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 22px;
    align-items: end;
    margin-top: 42px;
    padding: 24px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.search-panel h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--stone-200);
    border-radius: 999px;
    background: var(--stone-50);
}

.search-box span {
    color: var(--bronze-700);
    font-weight: 800;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--stone-900);
}

.section-block {
    margin: 64px auto;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(214, 211, 209, 0.7);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 10, 9, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(151, 118, 105, 0.34);
    box-shadow: 0 20px 40px rgba(12, 10, 9, 0.15);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(210, 186, 176, 0.42), transparent 34%),
        linear-gradient(135deg, var(--stone-800), var(--stone-950));
}

.poster-link img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.25s ease;
}

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

.type-badge,
.score-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--stone-100);
    font-size: 12px;
    font-weight: 800;
    background: rgba(12, 10, 9, 0.68);
    backdrop-filter: blur(10px);
}

.type-badge {
    left: 12px;
    top: 12px;
}

.score-badge {
    right: 12px;
    bottom: 12px;
    color: var(--stone-950);
    background: var(--bronze-400);
}

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

.movie-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.movie-card h3 a:hover {
    color: var(--bronze-700);
}

.movie-line {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0;
    overflow: hidden;
    color: var(--stone-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--stone-500);
    font-size: 13px;
}

.meta-row span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--stone-300);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--bronze-700);
    background: rgba(210, 186, 176, 0.18);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: var(--stone-100);
    border: 1px solid rgba(245, 245, 244, 0.2);
    background: rgba(245, 245, 244, 0.12);
}

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

.category-card {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(210, 186, 176, 0.42), transparent 40%),
        #ffffff;
    box-shadow: 0 12px 28px rgba(12, 10, 9, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.category-card span {
    color: var(--stone-600);
    font-size: 14px;
}

.rank-preview {
    padding: 36px;
    border-radius: var(--radius-xl);
    color: var(--stone-100);
    background:
        radial-gradient(circle at top left, rgba(151, 118, 105, 0.42), transparent 36%),
        linear-gradient(135deg, var(--stone-900), var(--stone-950));
}

.rank-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 56px;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(245, 245, 244, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.rank-list span {
    color: var(--bronze-400);
    font-weight: 900;
}

.rank-list a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-list em {
    color: var(--bronze-300);
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.page-hero {
    margin-top: 44px;
    padding: 52px;
    border-radius: var(--radius-xl);
    color: var(--stone-100);
    background:
        radial-gradient(circle at 85% 10%, rgba(210, 186, 176, 0.35), transparent 26%),
        linear-gradient(135deg, var(--stone-900), var(--stone-950));
    box-shadow: var(--shadow-soft);
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--stone-300);
    font-size: 18px;
}

.page-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.page-tabs a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(245, 245, 244, 0.16);
    border-radius: 999px;
    color: var(--stone-200);
    background: rgba(255, 255, 255, 0.06);
}

.page-tabs a:hover {
    color: var(--stone-950);
    background: var(--bronze-400);
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 10, 9, 0.08);
}

.ranking-poster {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--stone-900);
}

.ranking-poster img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}

.ranking-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: var(--stone-950);
    background: var(--bronze-400);
    font-weight: 900;
}

.ranking-info {
    position: relative;
    padding: 8px 80px 8px 0;
}

.ranking-info h2 {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 32px);
}

.ranking-info p:not(.eyebrow) {
    color: var(--stone-600);
}

.ranking-score {
    position: absolute;
    top: 6px;
    right: 0;
    color: var(--bronze-700);
    font-size: 34px;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--stone-100);
    background: var(--stone-950);
}

.detail-bg,
.detail-shade {
    position: absolute;
    inset: 0;
}

.detail-bg {
    background-position: center;
    background-size: cover;
    filter: blur(6px);
    transform: scale(1.08);
    opacity: 0.42;
}

.detail-shade {
    background:
        linear-gradient(90deg, rgba(12, 10, 9, 0.94), rgba(12, 10, 9, 0.74), rgba(12, 10, 9, 0.52)),
        linear-gradient(0deg, rgba(12, 10, 9, 0.92), transparent);
}

.detail-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    min-height: 620px;
    padding: 58px 0;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(245, 245, 244, 0.16);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 30% 20%, rgba(210, 186, 176, 0.42), transparent 34%),
        linear-gradient(135deg, var(--stone-800), var(--stone-950));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
}

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

.detail-line {
    max-width: 820px;
    color: var(--stone-200);
    font-size: 20px;
}

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

.detail-meta li {
    padding: 14px;
    border: 1px solid rgba(245, 245, 244, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.detail-meta span,
.detail-meta strong {
    display: block;
}

.detail-meta span {
    color: var(--stone-400);
    font-size: 12px;
}

.detail-meta strong {
    overflow: hidden;
    margin-top: 4px;
    color: var(--stone-100);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
}

.video-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    background: var(--stone-950);
    box-shadow: var(--shadow-soft);
}

.video-player video,
.player-cover,
.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-player video {
    object-fit: contain;
    background: #000000;
}

.player-cover {
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--stone-950);
    background: transparent;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(12, 10, 9, 0.82), rgba(12, 10, 9, 0.2));
}

.player-cover img {
    object-fit: cover;
}

.play-circle {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding-left: 6px;
    border-radius: 999px;
    background: var(--bronze-400);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
    font-size: 36px;
}

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

.side-recommend {
    padding: 20px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 10, 9, 0.08);
}

.side-recommend h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.compact-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--stone-200);
}

.compact-card:last-child {
    border-bottom: 0;
}

.compact-cover {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    background: var(--stone-900);
}

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

.compact-body strong,
.compact-body em {
    display: block;
}

.compact-body strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-body em {
    margin-top: 4px;
    color: var(--stone-500);
    font-size: 13px;
    font-style: normal;
}

.article-card {
    padding: 30px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 10, 9, 0.08);
}

.article-card p {
    margin: 0;
    color: var(--stone-700);
    font-size: 17px;
}

.article-card h2 {
    margin: 28px 0 10px;
    font-size: 24px;
}

.index-group {
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.index-group h2 {
    margin: 0 0 18px;
    color: var(--bronze-700);
}

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

.index-links a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 12px;
    border-radius: 14px;
    background: var(--stone-50);
}

.index-links a:hover {
    color: var(--bronze-700);
    background: rgba(210, 186, 176, 0.18);
}

.index-links span {
    overflow: hidden;
    color: var(--stone-500);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-footer {
    margin-top: 80px;
    padding: 54px 0;
    color: var(--stone-300);
    background: var(--stone-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 34px;
}

.footer-logo {
    color: var(--stone-100);
    font-size: 24px;
    font-weight: 900;
}

.site-footer p {
    max-width: 430px;
    color: var(--stone-400);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--stone-100);
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: var(--stone-400);
}

.site-footer a:hover {
    color: var(--bronze-400);
}

[data-search-card].hidden-by-search {
    display: none;
}

@media (max-width: 1120px) {
    .movie-grid,
    .wide-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

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

    .menu-button {
        display: flex;
    }

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

    .brand-title {
        font-size: 19px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero {
        height: 66vh;
        min-height: 540px;
    }

    .hero-content {
        width: min(100% - 32px, 680px);
        margin: 0 auto;
    }

    .hero-arrow {
        display: none;
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

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

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

    .category-grid,
    .rank-list,
    .index-links {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 34px 24px;
    }

    .ranking-card,
    .detail-wrap {
        grid-template-columns: 1fr;
    }

    .detail-wrap {
        min-height: auto;
    }

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

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

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

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

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

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

    .hero-summary,
    .detail-line {
        font-size: 16px;
    }

    .movie-grid,
    .wide-grid {
        grid-template-columns: 1fr;
    }

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

    .ranking-card {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 14px;
    }

    .ranking-info {
        padding-right: 0;
    }

    .ranking-score {
        position: static;
        margin-top: 10px;
    }

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