:root {
    color-scheme: dark;
    --page: #020617;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.95);
    --line: rgba(59, 130, 246, 0.26);
    --text: #e5f3ff;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --deep: #0f172a;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.48);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 8%, rgba(34, 211, 238, 0.17), transparent 30rem),
        radial-gradient(circle at 90% 16%, rgba(59, 130, 246, 0.15), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

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

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(59, 130, 246, 0.22);
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(30, 64, 175, 0.86), rgba(2, 6, 23, 0.96));
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 35px rgba(34, 211, 238, 0.28);
}

.brand-name,
.footer-brand {
    font-size: 1.25rem;
    background: linear-gradient(90deg, #60a5fa, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.nav-links a,
.nav-dropdown > button {
    color: #cbd5e1;
    padding: 10px 2px;
    border: 0;
    background: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-dropdown > button:hover {
    color: var(--cyan);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 190px;
    display: grid;
    gap: 2px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    padding: 10px 12px;
    border-radius: 10px;
}

.nav-dropdown-panel a:hover {
    background: rgba(34, 211, 238, 0.1);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.nav-search input,
.filter-label input,
.filter-label select {
    width: 100%;
    color: var(--text);
    outline: none;
    border: 1px solid rgba(96, 165, 250, 0.24);
    background: rgba(15, 23, 42, 0.72);
    border-radius: 999px;
    padding: 11px 16px;
}

.nav-search button,
.primary-btn,
.ghost-btn,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 18px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search button,
.primary-btn {
    color: #ffffff;
    border: 1px solid rgba(34, 211, 238, 0.38);
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.28);
}

.ghost-btn,
.section-more {
    color: #dbeafe;
    border: 1px solid rgba(96, 165, 250, 0.32);
    background: rgba(15, 23, 42, 0.72);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.nav-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(34, 211, 238, 0.25);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    color: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.72);
    padding: 8px 12px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.18);
}

.hero-track,
.hero-slide {
    min-height: 650px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.76) 46%, rgba(15, 23, 42, 0.1) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(34, 211, 238, 0.18), transparent 28rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.72));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 390px);
    gap: 52px;
    align-items: center;
    padding: 92px 0;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(2.45rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    max-width: 900px;
}

.hero-summary,
.page-hero p,
.detail-lead {
    max-width: 760px;
    color: #cbd5e1;
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.85;
    margin: 22px 0 0;
}

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

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    color: #bae6fd;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background: rgba(14, 165, 233, 0.11);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 0.82rem;
    font-weight: 700;
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 30px;
    min-height: 500px;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.hero-poster img {
    height: 500px;
}

.hero-poster span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 10px 18px;
    font-weight: 900;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.24);
}

.hero-dot.is-active {
    width: 38px;
    border-color: rgba(34, 211, 238, 0.8);
    background: var(--cyan);
}

.quick-categories,
.content-section,
.rank-section,
.page-main,
.detail-main,
.category-overview,
.ranking-page {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-categories {
    padding: 46px 0 16px;
}

.quick-shell {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 26px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.35));
    box-shadow: var(--shadow);
}

.quick-shell h2,
.section-head h2,
.rank-copy h2,
.detail-copy h2,
.side-card h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
}

.quick-shell p,
.section-head p,
.rank-copy p {
    color: var(--muted);
    line-height: 1.8;
    margin: 10px 0 0;
}

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

.quick-links a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 124px;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background: rgba(2, 6, 23, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
    font-weight: 900;
}

.quick-links a span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.6;
}

.quick-links a:hover {
    transform: translateY(-4px);
    background: rgba(34, 211, 238, 0.08);
}

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

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

.filter-panel {
    margin: 0 0 24px;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 14px;
}

.filter-label {
    display: grid;
    gap: 8px;
    color: #bfdbfe;
    font-size: 0.9rem;
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: 0 16px 45px rgba(2, 6, 23, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.48);
    box-shadow: 0 24px 70px rgba(34, 211, 238, 0.12);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
}

.poster-link img {
    height: 100%;
    transition: transform 0.4s ease;
}

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

.poster-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
    transition: opacity 0.2s ease;
}

.movie-card:hover .poster-mask {
    opacity: 1;
}

.play-circle {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 12px 35px rgba(34, 211, 238, 0.28);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
}

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

.movie-title {
    display: inline-block;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.38;
}

.movie-title:hover {
    color: var(--cyan);
}

.movie-meta,
.movie-desc {
    color: var(--muted);
    line-height: 1.65;
}

.movie-meta {
    margin: 8px 0 0;
    font-size: 0.86rem;
}

.movie-desc {
    margin: 10px 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rank-section {
    margin-top: 68px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 64, 175, 0.28)),
        radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.17), transparent 24rem);
    box-shadow: var(--shadow);
    padding: 32px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.3);
}

.rank-item:hover {
    border-color: rgba(34, 211, 238, 0.48);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-weight: 900;
}

.rank-title {
    color: #ffffff;
    font-weight: 900;
}

.rank-meta {
    color: var(--muted);
    font-size: 0.86rem;
}

.page-main {
    padding: 42px 0 70px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 54px;
    min-height: 310px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.22), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.42));
    box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.category-overview {
    display: grid;
    gap: 24px;
    padding: 34px 0 70px;
}

.category-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: center;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.category-card h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.category-card p {
    color: var(--muted);
    line-height: 1.8;
    margin: 12px 0 22px;
}

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

.category-samples a {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 160px;
}

.category-samples img {
    height: 190px;
}

.category-samples span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 12px 12px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
}

.ranking-page {
    padding: 38px 0 70px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 54px 142px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.76);
}

.ranking-index {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    font-weight: 900;
}

.ranking-cover {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
}

.ranking-cover img {
    height: 100%;
}

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

.ranking-meta {
    color: #bfdbfe;
    white-space: nowrap;
}

.detail-main {
    padding: 30px 0 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: var(--muted);
    margin-bottom: 18px;
}

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

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

.watch-primary,
.detail-side,
.side-card,
.detail-copy {
    min-width: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    border: 1px solid rgba(125, 211, 252, 0.3);
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 14px;
    color: #ffffff;
    border: 0;
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.28), rgba(2, 6, 23, 0.62));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-start-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding-left: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 22px 50px rgba(34, 211, 238, 0.34);
    font-size: 2rem;
}

.player-start-text {
    max-width: min(82%, 680px);
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    font-weight: 900;
}

.detail-copy {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.78);
}

.detail-copy h1 {
    font-size: clamp(2rem, 4.6vw, 4.6rem);
}

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

.detail-meta span {
    color: #dbeafe;
    border: 1px solid rgba(96, 165, 250, 0.24);
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.18);
    padding: 8px 13px;
}

.detail-tags {
    margin-bottom: 26px;
}

.detail-copy h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.detail-copy p {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 1.02rem;
}

.detail-side {
    display: grid;
    gap: 18px;
    align-content: start;
}

.side-poster {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: var(--shadow);
}

.side-poster img {
    min-height: 420px;
}

.side-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    padding: 22px;
}

.side-card dl {
    display: grid;
    gap: 13px;
    margin: 18px 0 0;
}

.side-card dt {
    color: #93c5fd;
    font-weight: 900;
}

.side-card dd {
    margin: -8px 0 0;
    color: #e2e8f0;
    line-height: 1.65;
}

.side-card a {
    color: var(--cyan);
}

.related-section {
    width: 100%;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(59, 130, 246, 0.18);
    background: rgba(2, 6, 23, 0.72);
}

.footer-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    padding: 42px 0;
}

.footer-shell p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-content: start;
}

.footer-links a {
    color: #cbd5e1;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 999px;
    padding: 8px 12px;
}

.footer-links a:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.45);
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 30px;
    color: #64748b;
    font-size: 0.9rem;
}

.is-filter-hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .nav-shell {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links,
    .nav-search {
        display: none;
        width: 100%;
    }

    .site-header.is-open .nav-links,
    .site-header.is-open .nav-search {
        display: flex;
    }

    .site-header.is-open .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav-dropdown-panel {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
    }

    .hero-content,
    .quick-shell,
    .rank-section,
    .category-card,
    .watch-layout,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

    .ranking-row {
        grid-template-columns: 44px 110px 1fr;
    }

    .ranking-meta {
        grid-column: 3;
    }
}

@media (max-width: 680px) {
    .nav-shell,
    .quick-categories,
    .content-section,
    .rank-section,
    .page-main,
    .detail-main,
    .category-overview,
    .ranking-page,
    .footer-shell,
    .footer-bottom {
        width: min(100% - 22px, 1240px);
    }

    .hero-carousel,
    .hero-track,
    .hero-slide {
        min-height: 590px;
    }

    .hero-content {
        width: min(100% - 22px, 1240px);
        padding: 70px 0;
    }

    .hero-actions,
    .section-head,
    .filter-row {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .quick-links,
    .movie-grid,
    .category-samples {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-copy,
    .rank-section,
    .quick-shell,
    .category-card {
        padding: 22px;
        border-radius: 22px;
    }

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

    .ranking-cover {
        display: none;
    }

    .ranking-meta {
        grid-column: 2;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
