:root {
    --bg: #fff7ed;
    --panel: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fef3c7;
    --brand: #f97316;
    --brand-dark: #92400e;
    --brand-mid: #fb923c;
    --accent: #facc15;
    --line: rgba(146, 64, 14, 0.14);
    --shadow: 0 18px 48px rgba(146, 64, 14, 0.16);
    --shadow-strong: 0 28px 70px rgba(124, 45, 18, 0.28);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, #d97706 0%, #f97316 48%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.26);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: scale(1.04);
}

.brand-icon {
    font-size: 32px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
}

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

.nav-link,
.mobile-nav-link {
    border-radius: 999px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

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

.hero-carousel {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #9a3412;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

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

.hero-bg img,
.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 24%, rgba(250, 204, 21, 0.34), transparent 32%),
        linear-gradient(90deg, rgba(67, 20, 7, 0.92) 0%, rgba(124, 45, 18, 0.74) 48%, rgba(248, 113, 22, 0.24) 100%),
        linear-gradient(0deg, rgba(255, 247, 237, 0.0) 72%, rgba(255, 247, 237, 0.14) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 54px;
    min-height: 600px;
    padding: 72px 0 96px;
}

.hero-copy {
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fef3c7;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 78px);
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    line-height: 1.9;
}

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

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

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

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    font-weight: 800;
}

.hero-tags span {
    padding: 7px 12px;
    color: #431407;
    background: rgba(254, 243, 199, 0.94);
}

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

.primary-button,
.ghost-button,
.section-more {
    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 0.2s ease;
}

.primary-button {
    padding: 14px 24px;
    color: #ea580c;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

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

.ghost-button {
    padding: 12px 22px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

.hero-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.26);
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hero-card:hover img {
    transform: scale(1.06);
}

.hero-card span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    color: #f97316;
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translate(-50%, -50%);
    font-size: 30px;
}

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

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(67, 20, 7, 0.18);
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 999px;
}

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

.category-strip {
    padding: 24px 0;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(146, 64, 14, 0.1);
}

.chip-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 14px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #d97706);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 38px rgba(217, 119, 6, 0.3);
}

.category-chip span {
    font-size: 22px;
}

.content-section {
    padding: 70px 0;
}

.soft-section {
    background: linear-gradient(180deg, rgba(254, 243, 199, 0.55), rgba(255, 255, 255, 0.92));
}

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

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

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

.section-more {
    flex: 0 0 auto;
    padding: 12px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #d97706);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.22);
}

.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 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 34px rgba(146, 64, 14, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

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

.poster-badge,
.poster-play {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
}

.poster-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    box-shadow: 0 8px 20px rgba(67, 20, 7, 0.18);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    color: #f97316;
    background: #ffffff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: all 0.2s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.movie-meta-line span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fff7ed;
}

.movie-card h2 {
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.35;
}

.compact-card h2 {
    font-size: 17px;
}

.movie-card h2 a:hover,
.rank-title:hover {
    color: var(--brand);
}

.movie-card p {
    min-height: 54px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.tag-row span {
    padding: 5px 9px;
    color: #92400e;
    background: #fef3c7;
    font-size: 12px;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(146, 64, 14, 0.1);
}

.rank-cover {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.rank-cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: 100%;
    object-fit: cover;
}

.rank-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    font-weight: 950;
}

.rank-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.rank-title {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
}

.rank-info p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 12%, rgba(250, 204, 21, 0.34), transparent 30%),
        linear-gradient(135deg, #b45309 0%, #f97316 55%, #fb7185 100%);
}

.page-hero h1 {
    max-width: 860px;
    font-size: clamp(36px, 6vw, 62px);
}

.page-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: #ffedd5;
    font-size: 19px;
}

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

.category-card-large {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-card-link {
    position: relative;
    display: grid;
    min-height: 260px;
    padding: 28px;
    align-content: end;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(67, 20, 7, 0.36), rgba(249, 115, 22, 0.84));
}

.category-thumb-stack {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    opacity: 0.42;
}

.category-thumb-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon {
    position: relative;
    z-index: 2;
    font-size: 38px;
}

.category-card-link h2,
.category-card-link p,
.category-card-link strong {
    position: relative;
    z-index: 2;
}

.category-card-link h2 {
    margin: 12px 0 8px;
    font-size: 30px;
}

.category-card-link p {
    max-width: 560px;
    margin: 0 0 18px;
    color: #ffedd5;
    line-height: 1.7;
}

.category-card-link strong {
    display: inline-flex;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.filter-panel {
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(146, 64, 14, 0.09);
}

.filter-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 14px;
}

.filter-grid label {
    display: grid;
    gap: 7px;
    color: #92400e;
    font-size: 13px;
    font-weight: 900;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(146, 64, 14, 0.18);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--text);
    background: #ffffff;
    outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #431407;
}

.detail-backdrop img {
    opacity: 0.55;
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(250, 204, 21, 0.24), transparent 28%),
        linear-gradient(90deg, rgba(67, 20, 7, 0.92) 0%, rgba(124, 45, 18, 0.76) 58%, rgba(249, 115, 22, 0.38) 100%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 36px 0 70px;
}

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

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

.detail-intro {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
    max-width: 920px;
    font-size: clamp(34px, 5vw, 62px);
}

.detail-copy p {
    max-width: 850px;
    margin: 20px 0 0;
    color: #ffedd5;
    font-size: 19px;
}

.detail-section {
    padding-top: 52px;
}

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

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

.player-panel,
.detail-panel,
.side-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.player-shell {
    position: relative;
    overflow: hidden;
    background: #111827;
}

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

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.72));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    color: #f97316;
    background: #ffffff;
    box-shadow: var(--shadow-strong);
    font-size: 34px;
}

.player-start strong {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 18px;
}

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

.detail-panel,
.side-panel {
    padding: 26px;
}

.detail-panel h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.detail-panel p {
    margin: 0;
    color: #4b5563;
    line-height: 1.9;
    white-space: pre-line;
}

.amber-panel {
    background: #fffbeb;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(146, 64, 14, 0.12);
}

.info-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-list dt {
    color: #92400e;
    font-weight: 900;
}

.info-list dd {
    margin: 0;
    color: #374151;
}

.detail-side {
    position: sticky;
    top: 92px;
}

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

.related-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.related-item img {
    width: 104px;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    object-fit: cover;
}

.related-item strong {
    display: block;
    margin-bottom: 6px;
    line-height: 1.35;
}

.related-item em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.related-item:hover strong,
.side-link:hover {
    color: var(--brand);
}

.side-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(146, 64, 14, 0.12);
    color: #92400e;
    font-weight: 900;
}

.side-link:last-child {
    border-bottom: 0;
}

.site-footer {
    color: #ffedd5;
    background: linear-gradient(180deg, #92400e, #451a03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding: 54px 0 34px;
}

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

.footer-grid p {
    margin: 0;
    color: #fed7aa;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #fed7aa;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: #fdba74;
}

[data-movie-card].is-hidden {
    display: none;
}

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

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

    .hero-content {
        grid-template-columns: 1fr 300px;
        gap: 32px;
    }

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

    .detail-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 58px 0 106px;
    }

    .hero-card {
        display: none;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .section-heading {
        display: grid;
        align-items: start;
    }

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

    .rank-grid,
    .category-overview-grid,
    .filter-grid,
    .footer-grid,
    .detail-intro {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        letter-spacing: -0.04em;
    }

    .hero-actions {
        display: grid;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

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

    .rank-item {
        grid-template-columns: 112px minmax(0, 1fr);
        padding: 12px;
    }

    .rank-title {
        font-size: 17px;
    }

    .rank-info p {
        display: none;
    }

    .content-section {
        padding: 48px 0;
    }
}
