:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --rose-50: #fff1f2;
    --rose-600: #e11d48;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 16px 40px rgba(17, 24, 39, 0.12);
    --shadow-strong: 0 28px 65px rgba(17, 24, 39, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: var(--gray-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--amber-50), #ffffff, var(--amber-50));
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

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

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

.brand-mark,
.footer-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
    box-shadow: 0 12px 26px rgba(217, 119, 6, 0.32);
}

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

.brand-text strong {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--amber-800), var(--amber-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--gray-600);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--amber-600);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-700);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

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

.mobile-nav {
    display: none;
    padding: 14px 16px 18px;
    background: #ffffff;
    border-top: 1px solid var(--gray-200);
}

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

.mobile-link {
    padding: 11px 8px;
    color: var(--gray-700);
    font-weight: 700;
    border-radius: 10px;
}

.mobile-link:hover {
    color: var(--amber-700);
    background: var(--amber-50);
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50), var(--amber-50));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(circle at 1px 1px, rgba(146, 64, 14, 0.2) 1px, transparent 0);
    background-size: 34px 34px;
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hero h1 span,
.page-hero h1 span {
    background: linear-gradient(90deg, var(--amber-600), var(--rose-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1.8;
}

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

.hero-actions.slim {
    justify-content: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-700));
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(217, 119, 6, 0.4);
}

.btn-light {
    color: var(--amber-700);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--amber-200);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.btn.wide {
    width: 100%;
}

.hero-mini {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-mini a,
.hero-mini span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 800;
}

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

.hero-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, #f8e4bc, #f9fafb);
    box-shadow: var(--shadow-soft);
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-strong);
}

.hero-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.hero-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.78));
    opacity: 0.78;
}

.hero-card-play,
.poster-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 42px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.22);
    transition: opacity 0.25s ease;
}

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

.hero-card-text {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 4px;
    color: #ffffff;
    transform: translateY(8px);
    transition: transform 0.25s ease;
}

.hero-card:hover .hero-card-text {
    transform: translateY(0);
}

.hero-card-text strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-card-text em {
    color: var(--amber-200);
    font-size: 13px;
    font-style: normal;
}

.feature-strip {
    padding: 44px 0;
    background: #ffffff;
}

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

.feature-card {
    text-align: center;
    padding: 10px;
}

.feature-card span {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--amber-800);
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-200));
    transition: transform 0.25s ease;
}

.feature-card:hover span {
    transform: scale(1.1);
}

.feature-card strong,
.feature-card small {
    display: block;
}

.feature-card strong {
    margin-bottom: 4px;
    font-size: 17px;
}

.feature-card small {
    color: var(--gray-600);
}

.section {
    padding: 76px 0;
    background: #ffffff;
}

.section-warm {
    background: linear-gradient(135deg, var(--gray-50), var(--amber-50));
}

.section-head {
    text-align: center;
    margin-bottom: 36px;
}

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

.section-head p:not(.eyebrow) {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--gray-600);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card.hidden {
    display: none;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

.poster-shell {
    display: block;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #f5d69e, #fef3c7 45%, #fff1f2);
}

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

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

.score-badge,
.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.score-badge {
    top: 12px;
    left: 12px;
    background: var(--rose-600);
}

.year-badge {
    top: 12px;
    right: 12px;
    background: var(--amber-600);
}

.rank-badge {
    left: 12px;
    bottom: 12px;
    min-width: 36px;
    text-align: center;
    background: rgba(17, 24, 39, 0.8);
}

.movie-body {
    padding: 18px;
}

.movie-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-body h3 a:hover {
    color: var(--amber-700);
}

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

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-meta span:first-child {
    color: var(--amber-700);
    font-weight: 900;
}

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

.tag-row span {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--amber-800);
    background: var(--amber-50);
    font-size: 12px;
    font-weight: 700;
}

.large-tags span {
    padding: 7px 12px;
    font-size: 13px;
}

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

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

.category-card {
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-cover {
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card:hover .category-cover img {
    transform: scale(1.08);
}

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.72));
}

.category-cover span {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.category-body {
    padding: 22px;
}

.category-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.category-body p {
    margin: 0;
    color: var(--gray-600);
}

.category-preview {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.category-preview a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-700);
    font-size: 14px;
}

.category-preview a:hover,
.text-link:hover {
    color: var(--amber-700);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--amber-700);
    font-weight: 900;
}

.filter-panel {
    margin-bottom: 30px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.filter-search label,
.filter-selects label {
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 900;
}

.filter-search input,
.filter-selects select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--gray-900);
    background: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-search input:focus,
.filter-selects select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.filter-selects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.filter-empty {
    display: none;
    margin: 16px 0 0;
    padding: 18px;
    border-radius: 16px;
    color: var(--gray-600);
    text-align: center;
    background: var(--gray-50);
}

.filter-empty.show {
    display: block;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 56px 74px minmax(0, 1fr) auto 76px;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    padding: 14px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, var(--amber-50));
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.rank-row.hidden {
    display: none;
}

.rank-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-600), var(--rose-600));
}

.rank-row img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

.rank-info {
    min-width: 0;
    display: grid;
    gap: 5px;
}

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

.rank-info em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-600);
    font-size: 13px;
    font-style: normal;
}

.rank-meta {
    color: var(--gray-600);
    font-size: 13px;
    white-space: nowrap;
}

.rank-score {
    justify-self: end;
    color: var(--rose-600);
    font-size: 22px;
    font-weight: 900;
}

.center-actions {
    margin-top: 32px;
    text-align: center;
}

.page-hero {
    padding: 86px 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-600), var(--rose-600));
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.page-hero .eyebrow {
    color: var(--amber-100);
}

.ranking-hero {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.26), transparent 28%), linear-gradient(120deg, var(--amber-700), var(--rose-600));
}

.breadcrumb-wrap {
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 14px;
}

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

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

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

.detail-main,
.side-card {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.detail-main {
    overflow: hidden;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.66));
}

.player-overlay.is-hidden {
    display: none;
}

.play-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    color: #ffffff;
    font-size: 32px;
    background: linear-gradient(135deg, var(--amber-600), var(--rose-600));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

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

.detail-copy {
    padding: 30px;
}

.detail-copy h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.detail-copy .lead {
    margin: 18px 0 0;
    color: var(--gray-700);
    font-size: 19px;
    line-height: 1.8;
}

.detail-copy h2 {
    margin: 34px 0 12px;
    font-size: 24px;
}

.detail-copy p {
    color: var(--gray-700);
}

.detail-side {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.poster-card {
    overflow: hidden;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

.info-card {
    padding: 24px;
}

.info-card h2 {
    margin: 0 0 18px;
}

.info-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0 0 22px;
}

.info-card dt {
    color: var(--gray-500);
    font-weight: 700;
}

.info-card dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 800;
}

.site-footer {
    color: #ffffff;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800), var(--gray-900));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 26px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--amber-200);
    font-size: 20px;
}

.footer-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--amber-200);
}

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

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

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

@media (max-width: 1120px) {
    .desktop-nav {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .menu-toggle {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 52px 0;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-actions,
    .hero-actions.slim {
        justify-content: center;
    }

    .hero-mini {
        justify-content: center;
    }

    .hero-grid {
        display: none;
    }

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

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

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

    .detail-side {
        position: static;
        grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
    }

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

@media (max-width: 640px) {
    .site-header-inner {
        height: 70px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

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

    .hero,
    .hero-inner {
        min-height: 560px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .feature-grid,
    .movie-grid,
    .library-grid,
    .category-grid,
    .category-grid.large,
    .filter-selects,
    .detail-side,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }

    .rank-row {
        grid-template-columns: 42px 58px minmax(0, 1fr) 56px;
        gap: 10px;
        padding: 12px;
    }

    .rank-row img {
        width: 58px;
        height: 58px;
        border-radius: 12px;
    }

    .rank-number {
        width: 36px;
        height: 36px;
    }

    .rank-meta {
        display: none;
    }

    .rank-score {
        font-size: 18px;
    }

    .page-hero {
        padding: 58px 0;
        text-align: center;
    }

    .page-hero p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
    }

    .detail-copy {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
