* {
    box-sizing: border-box;
}

:root {
    --amber: #d97706;
    --orange: #ea580c;
    --rose: #f43f5e;
    --ink: #111827;
    --muted: #6b7280;
    --line: #fed7aa;
    --paper: #ffffff;
    --warm: #fff7ed;
    --soft: #fffbeb;
    --shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #fffaf2 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

img,
video {
    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;
    border-bottom: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(255, 251, 235, 0.86);
    backdrop-filter: blur(16px);
}

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

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 26px rgba(234, 88, 12, 0.28);
}

.brand strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: rgba(255, 237, 213, 0.88);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

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

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.mobile-nav a,
.mobile-sub-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 700;
}

.mobile-nav a:hover {
    background: var(--warm);
    color: var(--orange);
}

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 36px 0 52px;
}

.hero-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.26);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.36)), var(--hero-bg);
    background-position: center;
    background-size: cover;
    filter: saturate(1.1);
}

.hero-bg::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 18%, rgba(251, 146, 60, 0.32), transparent 32%), radial-gradient(circle at 82% 70%, rgba(244, 63, 94, 0.24), transparent 30%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.eyebrow.dark {
    color: var(--orange);
    border-color: rgba(251, 146, 60, 0.38);
    background: rgba(255, 237, 213, 0.74);
}

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

.hero p,
.page-hero p,
.detail-info p {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.75;
}

.hero-tags,
.tag-row,
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span,
.tag-row span,
.category-pills a {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

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

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

.primary-btn,
.ghost-btn,
.quick-search button,
.filter-bar button,
.filter-bar a,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.quick-search button,
.filter-bar button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 28px rgba(234, 88, 12, 0.26);
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.primary-btn:hover,
.ghost-btn:hover,
.quick-search button:hover,
.filter-bar button:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.primary-btn.wide {
    width: 100%;
    margin-top: 20px;
}

.hero-poster {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

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

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

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

.hero-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px);
    gap: 28px;
    align-items: center;
    margin-top: 20px;
    padding: 28px;
    border: 1px solid rgba(251, 191, 36, 0.38);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.search-panel h2,
.section-heading h2,
.ranking-panel h2,
.story-card h2,
.side-card h2,
.category-card-large h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
}

.search-panel p,
.page-hero p,
.category-card-large p,
.story-card p,
.site-footer p {
    color: var(--muted);
    line-height: 1.8;
}

.quick-search,
.filter-bar {
    display: flex;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(251, 191, 36, 0.46);
    border-radius: 999px;
    background: #ffffff;
}

.quick-search input,
.filter-bar input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 12px;
    color: var(--ink);
    background: transparent;
}

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

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

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

.section-heading.light {
    color: #ffffff;
}

.section-heading.light a {
    color: #ffffff;
}

.section-heading.compact {
    align-items: center;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.48);
    box-shadow: 0 24px 44px rgba(17, 24, 39, 0.16);
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.card-type,
.rank-mark,
.card-hover {
    position: absolute;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.card-type {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: rgba(17, 24, 39, 0.62);
}

.rank-mark {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--rose), var(--orange));
}

.card-hover {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    min-height: 40px;
    background: rgba(249, 115, 22, 0.86);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
}

.movie-card-body strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.32;
}

.movie-card-body em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.movie-line {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: auto;
}

.tag-row span,
.category-pills a {
    color: var(--orange);
    background: #fff7ed;
}

.section-gradient {
    margin: 30px 0;
    padding: 72px 0;
    background: linear-gradient(135deg, #f59e0b, #f97316 54%, #f43f5e);
}

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

.category-tile {
    position: relative;
    min-height: 170px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.23);
}

.category-tile strong,
.category-tile em,
.category-tile span:not(.tile-glow) {
    position: relative;
    z-index: 1;
    display: block;
}

.category-tile strong {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-tile em {
    min-height: 64px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
    line-height: 1.55;
}

.category-tile span:not(.tile-glow) {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 800;
}

.tile-glow {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
    padding: 72px 0;
}

.ranking-panel,
.story-card,
.side-card,
.category-card-large,
.page-hero,
.detail-main {
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
}

.ranking-panel {
    padding: 24px;
}

.sticky-panel {
    position: sticky;
    top: 96px;
}

.rank-list,
.rank-table,
.side-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.rank-row,
.rank-table-row,
.side-links a {
    display: grid;
    gap: 4px;
    padding: 13px;
    border-radius: 16px;
    background: #fff7ed;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row {
    grid-template-columns: 42px minmax(0, 1fr);
}

.rank-row:hover,
.rank-table-row:hover,
.side-links a:hover {
    transform: translateX(3px);
    background: #ffedd5;
}

.rank-row span,
.rank-table-row span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.rank-row strong,
.rank-table-row strong,
.side-links a {
    color: var(--ink);
    font-weight: 800;
}

.rank-row em,
.rank-table-row em,
.side-links span {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.rank-table-row {
    grid-template-columns: 42px 1fr auto;
    align-items: center;
}

.rank-table-row em {
    grid-column: 2 / 3;
}

.rank-table-row b {
    grid-row: 1 / span 2;
    grid-column: 3;
    color: var(--orange);
}

.page-hero {
    margin-top: 34px;
    padding: 42px;
}

.page-hero p {
    color: #4b5563;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #fef3c7;
    font-size: 14px;
    font-weight: 700;
}

.page-hero .breadcrumb {
    color: var(--muted);
}

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

.category-pills {
    margin-top: 26px;
}

.filter-bar {
    max-width: 740px;
    margin-top: 28px;
}

.wide-filter {
    max-width: 860px;
}

.filter-bar a {
    color: var(--orange);
    background: #fff7ed;
}

.empty-state {
    display: none;
    margin-top: 22px;
    padding: 22px;
    border-radius: 18px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
}

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

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

.category-card-large {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
}

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

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

.category-card-large h2 {
    font-size: 24px;
}

.mini-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.mini-link-list a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--orange);
    background: #fff7ed;
    font-size: 13px;
    font-weight: 800;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 56px 0;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.62)), var(--detail-bg);
    background-position: center;
    background-size: cover;
}

.detail-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

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

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

.detail-info {
    position: relative;
}

.detail-info p {
    color: rgba(255, 255, 255, 0.84);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta span {
    padding: 9px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.detail-main {
    margin-top: 34px;
    padding: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.26);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.72));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 35px rgba(234, 88, 12, 0.36);
    font-size: 30px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    margin-top: 24px;
}

.story-card,
.side-card {
    padding: 26px;
}

.story-card h2,
.side-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 24px;
}

.story-card p + h2 {
    margin-top: 28px;
}

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

.detail-list div {
    padding: 14px;
    border-radius: 16px;
    background: #fff7ed;
}

.detail-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.detail-list dd {
    margin: 6px 0 0;
    color: var(--ink);
    font-weight: 800;
}

.site-footer {
    margin-top: 40px;
    padding: 48px 0 0;
    color: #4b5563;
    background: #fff7ed;
    border-top: 1px solid rgba(251, 191, 36, 0.34);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 24px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 18px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 10px;
}

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

.footer-bottom {
    margin-top: 34px;
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
}

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

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

    .two-column-section,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .sticky-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-shell {
        min-height: 720px;
        border-radius: 26px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 38px 24px 88px;
    }

    .hero-poster {
        max-width: 260px;
        margin: 0 auto;
        transform: none;
    }

    .search-panel,
    .detail-layout,
    .category-card-large,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .quick-search,
    .filter-bar {
        border-radius: 22px;
        flex-direction: column;
    }

    .quick-search input,
    .filter-bar input {
        min-height: 46px;
    }

    .category-large-grid,
    .detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .brand small {
        display: none;
    }

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

    .movie-grid,
    .compact-grid,
    .catalog-grid,
    .featured-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

    .movie-line,
    .tag-row {
        display: none;
    }

    .page-hero,
    .detail-main,
    .story-card,
    .side-card,
    .ranking-panel {
        padding: 20px;
        border-radius: 20px;
    }

    .rank-table-row {
        grid-template-columns: 42px 1fr;
    }

    .rank-table-row b {
        grid-column: 2;
        grid-row: auto;
    }
}
