
:root {
    --bg: #0f172a;
    --bg-deep: #020617;
    --panel: rgba(30, 41, 59, 0.66);
    --panel-strong: rgba(15, 23, 42, 0.88);
    --line: rgba(148, 163, 184, 0.24);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --cyan: #22d3ee;
    --blue: #2563eb;
    --red: #fb7185;
    --orange: #f97316;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.16), transparent 30rem),
        radial-gradient(circle at 88% 20%, rgba(37, 99, 235, 0.18), transparent 28rem),
        linear-gradient(180deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
}

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

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

button,
input,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
}

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

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

.brand-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 32px rgba(34, 211, 238, 0.22);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.nav-link,
.mobile-nav-link {
    color: var(--soft);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.header-search,
.mobile-search,
.hero-search,
.search-page-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-page-form input,
.filter-controls input,
.filter-controls select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    outline: none;
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 210px;
    padding: 10px 14px;
}

.hero-search input,
.search-page-form input {
    padding: 16px 18px;
}

.mobile-search input,
.filter-controls input,
.filter-controls select {
    padding: 13px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-page-form input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: rgba(34, 211, 238, 0.78);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.mobile-search button,
.hero-search button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    color: #001018;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), #67e8f9);
    white-space: nowrap;
    cursor: pointer;
}

.header-search button,
.mobile-search button {
    padding: 10px 14px;
}

.hero-search button,
.search-page-form button {
    padding: 16px 24px;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    padding: 9px 12px;
    color: white;
    background: rgba(30, 41, 59, 0.82);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-nav-link {
    display: block;
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(30, 41, 59, 0.62);
}

.hero-section {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.hero-backdrop,
.hero-shade,
.hero-image-grid {
    position: absolute;
    inset: 0;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-image-cell {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

.hero-image-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.12) contrast(1.04);
}

.hero-image-cell::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.1));
}

.hero-image-cell span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    max-width: calc(100% - 44px);
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(2, 6, 23, 0.52);
    backdrop-filter: blur(10px);
    font-size: 13px;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.42)),
        linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.1) 45%, rgba(15, 23, 42, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
    min-height: 620px;
    padding: 54px 0;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker {
    margin: 0 0 14px;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.compact-hero h1 {
    margin: 0;
    color: white;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 12px;
    color: var(--cyan);
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
}

.hero-summary,
.compact-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--soft);
    font-size: 20px;
    line-height: 1.8;
}

.hero-search {
    max-width: 660px;
    margin-top: 32px;
}

.hero-actions,
.page-hero-actions,
.hero-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-actions a,
.page-hero-actions a,
.hero-category-links a,
.panel-more,
.detail-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.62);
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.hero-actions a:first-child,
.page-hero-actions a:first-child,
.panel-more,
.detail-category-link {
    border-color: transparent;
    color: #001018;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), #67e8f9);
}

.hero-actions a:hover,
.page-hero-actions a:hover,
.hero-category-links a:hover,
.panel-more:hover,
.detail-category-link:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.65);
}

.hero-panel {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 28px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

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

.hero-focus-list a {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    padding: 14px;
    background: rgba(30, 41, 59, 0.62);
    transition: border 0.2s ease, transform 0.2s ease;
}

.hero-focus-list a:hover {
    border-color: rgba(34, 211, 238, 0.58);
    transform: translateX(4px);
}

.hero-focus-list span {
    color: var(--muted);
    font-size: 13px;
}

.main-stack {
    display: grid;
    gap: 66px;
    padding: 64px 0 20px;
}

.section-block {
    display: grid;
    gap: 24px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.section-heading h2,
.filter-head h2,
.detail-content h2,
.category-overview-card span,
.sitemap-group h2 {
    margin: 0;
    color: white;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 900;
}

.section-heading p,
.filter-head p {
    margin: 5px 0 0;
    color: var(--muted);
}

.section-line {
    width: 5px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--cyan), var(--blue));
}

.section-heading-red .section-line {
    background: linear-gradient(to bottom, var(--red), var(--orange));
}

.section-heading-blue .section-line {
    background: linear-gradient(to bottom, #60a5fa, var(--blue));
}

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

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

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

.movie-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.52);
    box-shadow: 0 16px 35px rgba(2, 6, 23, 0.16);
    transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.62);
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(8, 145, 178, 0.14);
}

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020617;
}

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

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

.movie-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.12));
}

.movie-badge,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-badge {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    border-radius: 999px;
    padding: 6px 10px;
    color: white;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(10px);
    font-size: 12px;
}

.movie-play {
    top: 50%;
    left: 50%;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: rgba(34, 211, 238, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-info {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.movie-card-featured .movie-info {
    padding: 22px;
}

.movie-info h3 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.movie-card-compact .movie-info h3 {
    font-size: 16px;
}

.movie-info p {
    display: -webkit-box;
    min-height: 3.2em;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-meta span {
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(15, 23, 42, 0.58);
}

.movie-tags {
    min-height: 18px;
    color: var(--cyan);
    font-size: 12px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

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

.category-card,
.category-overview-card,
.ranking-panel,
.filter-shell,
.player-card,
.detail-content,
.sitemap-group {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 26px;
    background: rgba(30, 41, 59, 0.46);
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.16);
}

.category-card,
.category-overview-main {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.category-card span,
.category-overview-main span {
    color: white;
    font-size: 21px;
    font-weight: 900;
}

.category-card strong,
.category-overview-main strong {
    color: var(--cyan);
    font-size: 28px;
}

.category-card p,
.category-overview-main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.category-card:hover,
.category-overview-main:hover {
    border-color: rgba(34, 211, 238, 0.56);
}

.category-overview-card {
    overflow: hidden;
}

.category-overview-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 22px 22px;
    list-style: none;
}

.category-overview-card li a {
    display: block;
    color: var(--soft);
    font-size: 14px;
}

.ranking-panel {
    padding: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 4px 12px;
    align-items: center;
    border-radius: 16px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.42);
}

.rank-number {
    grid-row: span 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.rank-title {
    color: white;
    font-weight: 800;
}

.rank-meta {
    color: var(--muted);
    font-size: 13px;
}

.panel-more {
    width: 100%;
    margin-top: 18px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background:
        radial-gradient(circle at 24% 28%, rgba(34, 211, 238, 0.2), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.86));
}

.compact-hero .container {
    padding: 76px 0;
}

.compact-hero h1 {
    font-size: clamp(36px, 6vw, 58px);
}

.filter-shell {
    padding: 26px;
}

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

.filter-controls {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 66px 128px 1fr;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    padding: 14px;
    background: rgba(30, 41, 59, 0.48);
    transition: border 0.2s ease, transform 0.2s ease;
}

.ranking-card:hover {
    border-color: rgba(34, 211, 238, 0.58);
    transform: translateY(-3px);
}

.ranking-index {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.ranking-card img {
    width: 128px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
}

.ranking-content {
    display: grid;
    gap: 6px;
}

.ranking-content strong {
    color: white;
    font-size: 18px;
}

.ranking-content em {
    color: var(--cyan);
    font-style: normal;
    font-size: 13px;
}

.ranking-content p {
    margin: 0;
    color: var(--muted);
}

.detail-page {
    display: grid;
    gap: 26px;
    padding: 34px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.player-card {
    overflow: hidden;
}

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

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: white;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.2));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border-radius: 50%;
    padding-left: 6px;
    color: white;
    font-size: 34px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 50px rgba(34, 211, 238, 0.26);
}

.player-overlay strong {
    max-width: min(720px, calc(100% - 36px));
    font-size: clamp(22px, 4vw, 42px);
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.detail-intro {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 26px;
    padding: 28px;
}

.detail-cover {
    width: 210px;
    aspect-ratio: 2 / 3;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-intro h1 {
    margin: 0;
    color: white;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
}

.detail-one-line {
    margin: 16px 0 0;
    color: var(--soft);
    font-size: 18px;
    line-height: 1.7;
}

.detail-meta,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.detail-meta span,
.tag-list span {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--soft);
    background: rgba(15, 23, 42, 0.6);
}

.tag-list span {
    color: var(--cyan);
}

.detail-category-link {
    margin-top: 22px;
}

.detail-content {
    padding: 28px;
}

.detail-content p {
    margin: 16px 0 0;
    color: var(--soft);
    font-size: 17px;
    line-height: 1.9;
}

.search-results {
    min-height: 360px;
}

.sitemap-stack {
    display: grid;
    gap: 28px;
    padding: 52px 0 0;
}

.sitemap-group {
    padding: 26px;
}

.sitemap-group h2 a {
    color: white;
}

.sitemap-group ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.sitemap-group li a {
    display: grid;
    gap: 4px;
    border-radius: 14px;
    padding: 10px 12px;
    color: var(--soft);
    background: rgba(15, 23, 42, 0.42);
}

.sitemap-group li a:hover {
    color: var(--cyan);
}

.sitemap-group li span {
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(2, 6, 23, 0.74);
}

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

.footer-grid h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 18px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--muted);
    line-height: 1.8;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding: 18px 0 26px;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

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

    .hero-content,
    .split-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 760px;
    }

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

    .filter-controls {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

    .hero-section,
    .hero-content,
    .hero-image-cell {
        min-height: 720px;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        opacity: 0.56;
    }

    .hero-image-cell:nth-child(n + 2) {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-items: end;
        padding: 44px 0;
    }

    .hero-copy h1,
    .compact-hero h1 {
        font-size: 40px;
        line-height: 1.05;
    }

    .hero-summary,
    .compact-hero p {
        font-size: 17px;
    }

    .hero-search,
    .search-page-form {
        display: grid;
    }

    .hero-search button,
    .search-page-form button {
        width: 100%;
    }

    .movie-grid,
    .movie-grid-featured,
    .movie-grid-compact,
    .category-movie-grid,
    .category-grid,
    .category-overview-grid,
    .sitemap-group ul {
        grid-template-columns: 1fr;
    }

    .filter-head,
    .detail-intro {
        display: grid;
        grid-template-columns: 1fr;
    }

    .filter-controls {
        grid-template-columns: 1fr;
    }

    .ranking-card {
        grid-template-columns: 52px 1fr;
    }

    .ranking-card img {
        display: none;
    }

    .detail-cover {
        width: min(220px, 100%);
    }
}
