:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-400: #60a5fa;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --secondary-50: #fff7ed;
    --secondary-100: #ffedd5;
    --secondary-600: #ea580c;
    --accent-500: #eab308;
    --success-600: #16a34a;
    --dark-50: #f8fafc;
    --dark-100: #f1f5f9;
    --dark-300: #cbd5e1;
    --dark-500: #64748b;
    --dark-600: #475569;
    --dark-700: #334155;
    --dark-800: #1e293b;
    --dark-900: #0f172a;
    --shadow-soft: 0 2px 15px rgba(15, 23, 42, 0.06);
    --shadow-medium: 0 4px 20px rgba(15, 23, 42, 0.10);
    --shadow-hard: 0 10px 40px rgba(15, 23, 42, 0.16);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark-800);
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.nav-shell {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand span {
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(90deg, var(--primary-600), var(--secondary-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon {
    width: 34px;
    height: 34px;
    color: var(--primary-600);
    fill: currentColor;
}

.brand-icon rect {
    opacity: 0.14;
}

.brand-icon path {
    color: var(--primary-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--dark-700);
    font-weight: 650;
}

.nav-link {
    position: relative;
    padding: 22px 0;
    transition: color 0.2s ease;
}

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

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-600), var(--secondary-600));
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--dark-100);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark-700);
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--dark-100);
    background: #ffffff;
}

.mobile-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--dark-700);
    font-weight: 650;
}

.mobile-menu a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-900), var(--dark-800));
}

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

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.34), transparent 38%), linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.46), rgba(15, 23, 42, 0.72));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    max-width: 760px;
}

.hero-label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--secondary-600);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
}

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

.hero-content p {
    max-width: 680px;
    margin: 0;
    color: #e5e7eb;
    font-size: clamp(17px, 2vw, 22px);
}

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

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

.primary-button {
    gap: 10px;
    background: var(--primary-600);
    color: #ffffff;
    box-shadow: var(--shadow-hard);
}

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

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.play-dot {
    width: 20px;
    height: 20px;
    clip-path: polygon(18% 0, 100% 50%, 18% 100%);
    background: #ffffff;
}

.hero-control {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.70);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

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

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

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

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

.section-heading span {
    display: block;
    color: var(--primary-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 4px 0 0;
    color: var(--dark-900);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.16;
}

.section-heading a {
    color: var(--primary-600);
    font-weight: 800;
}

.compact-heading {
    align-items: center;
    margin-top: 44px;
    margin-bottom: 22px;
}

.compact-heading h2 {
    font-size: 18px;
    color: var(--dark-600);
    font-weight: 600;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: var(--dark-100);
}

.poster-small {
    height: 190px;
}

.poster-medium {
    height: 230px;
}

.poster-large {
    height: 305px;
}

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

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.08) 62%, rgba(15, 23, 42, 0.10));
}

.badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.badge-left {
    top: 10px;
    left: 10px;
    background: var(--primary-600);
}

.badge-right {
    top: 10px;
    right: 10px;
    background: var(--secondary-600);
}

.rank-badge {
    left: 10px;
    bottom: 10px;
    min-width: 34px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-500), var(--secondary-600));
}

.play-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
}

.play-hover span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--primary-600);
    box-shadow: var(--shadow-hard);
}

.play-hover span::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 26px;
    margin: 18px 0 0 23px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #ffffff;
}

.card-body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.card-body strong {
    color: var(--dark-800);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-card:hover strong {
    color: var(--primary-600);
}

.card-meta {
    color: var(--dark-500);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-desc {
    min-height: 42px;
    color: var(--dark-600);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rail-section {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--secondary-50), #ffffff);
}

.rail-heading {
    align-items: center;
}

.rail-buttons {
    display: flex;
    gap: 10px;
}

.rail-buttons button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--dark-700);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    font-size: 26px;
}

.movie-rail {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
    display: none;
}

.rail-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.chip-row,
.side-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip,
.filter-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    color: var(--dark-700);
    font-weight: 750;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.chip:hover,
.filter-tabs button:hover,
.filter-tabs button.is-active {
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: var(--shadow-medium);
}

.chip-light {
    background: var(--primary-50);
    color: var(--primary-800);
}

.split-showcase {
    padding-top: 76px;
}

.year-section {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--primary-50), #ffffff);
}

.year-columns {
    display: grid;
    gap: 48px;
}

.year-columns h3 {
    display: inline-flex;
    margin: 0 0 24px;
    padding: 8px 16px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--primary-600);
}

.year-columns > div:nth-child(2) h3 {
    background: var(--secondary-600);
}

.search-panel {
    padding-top: 30px;
}

.search-box {
    margin-bottom: 28px;
}

.search-box input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--dark-100);
    border-radius: 16px;
    outline: none;
    color: var(--dark-800);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), var(--shadow-soft);
}

.wide-search {
    max-width: 680px;
    margin-top: 28px;
}

.empty-message {
    display: none;
    margin: 34px 0 0;
    padding: 30px;
    border-radius: var(--radius);
    color: var(--dark-500);
    text-align: center;
    background: var(--dark-50);
}

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

.page-hero {
    padding: 76px 0;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.42), transparent 28%), linear-gradient(135deg, var(--primary-600), var(--primary-800));
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary-100);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #dbeafe;
    font-size: 19px;
}

.hero-chip-row {
    margin-top: 28px;
}

.hero-chip-row .chip {
    box-shadow: none;
}

.library-hero {
    background: radial-gradient(circle at 18% 18%, rgba(234, 88, 12, 0.36), transparent 28%), linear-gradient(135deg, var(--dark-900), var(--primary-800));
}

.ranking-hero {
    background: radial-gradient(circle at 22% 20%, rgba(234, 179, 8, 0.44), transparent 28%), linear-gradient(135deg, #111827, var(--primary-800));
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.library-chips {
    margin-bottom: 28px;
}

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

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 54px 74px minmax(0, 1fr) minmax(180px, 360px);
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.ranking-row span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 900;
    background: var(--primary-600);
}

.ranking-row img {
    width: 74px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-row strong {
    min-width: 0;
    color: var(--dark-900);
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-row em {
    color: var(--dark-500);
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-hero {
    position: relative;
    height: 440px;
    overflow: hidden;
    color: #ffffff;
    background: var(--dark-900);
}

.detail-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.38);
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.78));
}

.detail-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
}

.back-link {
    width: max-content;
    padding: 9px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-weight: 800;
}

.detail-title-wrap {
    max-width: 840px;
}

.detail-title-wrap span {
    color: var(--primary-100);
    font-weight: 850;
}

.detail-title-wrap h1 {
    margin: 10px 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
}

.detail-title-wrap p {
    margin: 0;
    color: #e2e8f0;
    font-size: 19px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.85fr);
    gap: 30px;
    padding: 40px 0 80px;
}

.detail-main,
.detail-side {
    display: grid;
    align-content: start;
    gap: 24px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #000000;
    box-shadow: var(--shadow-hard);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), rgba(0, 0, 0, 0.48));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-circle {
    position: relative;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--primary-600);
    box-shadow: var(--shadow-hard);
}

.player-circle span {
    width: 30px;
    height: 34px;
    margin-left: 6px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #ffffff;
}

.player-overlay strong {
    font-size: 20px;
}

.content-card,
.side-card {
    padding: 24px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.content-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: var(--dark-900);
    font-size: 24px;
}

.content-card p {
    margin: 0;
    color: var(--dark-700);
    line-height: 1.9;
    white-space: pre-line;
}

.lead-text {
    font-size: 18px;
    font-weight: 650;
}

.info-line,
.tag-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-line span,
.tag-line span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary-800);
    font-size: 14px;
    font-weight: 750;
}

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

.tag-line span {
    background: var(--secondary-50);
    color: var(--secondary-600);
}

.compact-list {
    display: grid;
    gap: 14px;
}

.compact-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.compact-card img {
    width: 84px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.compact-card span {
    min-width: 0;
}

.compact-card strong {
    display: block;
    color: var(--dark-900);
    line-height: 1.35;
}

.compact-card em {
    display: block;
    margin-top: 6px;
    color: var(--dark-500);
    font-size: 13px;
    font-style: normal;
}

.side-nav-card .side-chip-row {
    gap: 8px;
}

.side-nav-card .chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
}

.site-footer {
    margin-top: 60px;
    color: var(--dark-300);
    background: var(--dark-900);
}

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

.footer-logo span {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    color: var(--dark-300);
    font-size: 14px;
}

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

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

.site-footer a {
    color: var(--dark-300);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 22px 16px;
    border-top: 1px solid rgba(203, 213, 225, 0.12);
    text-align: center;
    color: var(--dark-500);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.is-hidden-by-filter,
.is-hidden-by-search {
    display: none;
}

@media (max-width: 1100px) {
    .six-columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .three-columns,
    .four-columns,
    .ranking-lead,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .section-container {
        width: min(100% - 24px, 1280px);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: inline-block;
    }

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

    .hero-carousel {
        height: 560px;
    }

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

    .hero-control {
        display: none;
    }

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

    .three-columns,
    .four-columns,
    .six-columns,
    .ranking-lead,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .poster-small,
    .poster-medium,
    .poster-large {
        height: 260px;
    }

    .rail-item {
        flex-basis: 280px;
    }

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

    .ranking-row em {
        grid-column: 3;
    }

    .ranking-row img {
        width: 62px;
        height: 82px;
    }

    .page-hero,
    .section-block,
    .rail-section,
    .year-section {
        padding: 52px 0;
    }

    .detail-hero {
        height: 500px;
    }

    .detail-layout {
        padding-top: 24px;
    }

    .content-card,
    .side-card {
        padding: 18px;
    }
}
