:root {
    color-scheme: light;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --teal-500: #14b8a6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-500));
    box-shadow: 0 10px 22px rgba(5, 150, 105, 0.25);
}

.brand-text,
.footer-brand span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand strong,
.footer-brand strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand small,
.footer-brand small {
    margin-top: 3px;
    color: var(--gray-500);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--emerald-600);
    transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--gray-800);
}

.mobile-nav {
    display: none;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 8px 0 18px;
    border-top: 1px solid var(--gray-200);
}

.hero {
    position: relative;
    height: 60vh;
    min-height: 520px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18));
}

.hero-content {
    position: absolute;
    left: max(16px, calc((100vw - var(--container)) / 2));
    bottom: 76px;
    width: min(760px, calc(100% - 32px));
    color: var(--white);
}

.hero-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.86);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
    background: var(--emerald-700);
    box-shadow: 0 18px 36px rgba(5, 150, 105, 0.32);
}

.btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--gray-900);
}

.btn.full {
    width: 100%;
}

.hero-dots {
    position: absolute;
    left: max(16px, calc((100vw - var(--container)) / 2));
    bottom: 34px;
    display: flex;
    gap: 9px;
    z-index: 5;
}

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

.hero-dot.is-active {
    width: 34px;
    background: var(--white);
}

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

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

.section-head h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--gray-500);
}

.section-link {
    color: var(--emerald-600);
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

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

.movie-card {
    min-width: 0;
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.94);
    color: var(--white);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.movie-card:hover .poster-link img,
.category-tile:hover img,
.category-overview-card:hover img,
.top-rank-card:hover img {
    transform: scale(1.08);
}

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

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

.movie-info {
    padding-top: 12px;
}

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 1.6em;
    color: var(--gray-900);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.25s ease;
}

.movie-card:hover .movie-title {
    color: var(--emerald-600);
}

.movie-info p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.2em;
    margin: 8px 0 10px;
    color: var(--gray-500);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-meta span {
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--gray-100);
}

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

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

.horizontal-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.horizontal-card .poster-link {
    border-radius: 12px;
}

.horizontal-card .movie-info {
    padding-top: 0;
}

.category-band {
    margin: 8px 0 10px;
    padding: 54px 0;
    background: linear-gradient(135deg, var(--emerald-50), #f0fdfa);
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.category-tile img,
.category-overview-card img,
.top-rank-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tile-shade,
.overview-poster span {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.14));
}

.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile strong {
    margin-bottom: 8px;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
}

.category-tile em {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
}

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

.split-side {
    position: sticky;
    top: 88px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.rank-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-row + .rank-row {
    border-top: 1px solid var(--gray-100);
}

.rank-row a {
    display: grid;
    grid-template-columns: 38px 68px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
}

.rank-number {
    color: var(--emerald-600);
    font-weight: 900;
}

.rank-row img {
    width: 68px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-body {
    min-width: 0;
}

.rank-body strong,
.rank-body em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-body strong {
    color: var(--gray-900);
    font-size: 14px;
}

.rank-body em {
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

.rank-views {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
}

.page-hero {
    padding: 74px 0;
    color: var(--white);
}

.gradient-hero,
.category-hero,
.search-hero {
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.35), transparent 34%), linear-gradient(135deg, #064e3b, #111827 62%, #0f172a);
}

.page-hero h1 {
    max-width: 780px;
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.overview-poster {
    position: relative;
    overflow: hidden;
}

.overview-content {
    padding: 26px;
}

.overview-content h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.overview-content p {
    margin: 0 0 22px;
    color: var(--gray-500);
}

.overview-meta {
    display: flex;
    justify-content: space-between;
    color: var(--emerald-600);
    font-weight: 800;
}

.overview-meta em {
    font-style: normal;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-search input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filter-search input:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.filter-groups {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.filter-groups div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.filter-groups strong {
    margin-right: 4px;
    color: var(--gray-700);
}

.filter-groups button {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease;
}

.filter-groups button:hover,
.filter-groups button.is-active {
    background: var(--emerald-600);
    color: var(--white);
}

.empty-state {
    padding: 42px;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-500);
    text-align: center;
}

.top-rank-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 22px;
    margin-bottom: 32px;
}

.top-rank-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.top-rank-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.10));
}

.top-rank-card div,
.top-rank-number {
    position: absolute;
    z-index: 2;
}

.top-rank-number {
    top: 18px;
    left: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.92);
    font-weight: 900;
}

.top-rank-card div {
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.top-rank-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.2;
}

.top-rank-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.82);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.top-rank-card em {
    font-style: normal;
    color: var(--emerald-100);
    font-weight: 900;
}

.full-rank {
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.detail-wrap {
    padding: 28px 0 10px;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--emerald-600);
    font-weight: 800;
}

.player-card,
.detail-content,
.side-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

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

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.28), rgba(0, 0, 0, 0.30));
    color: var(--white);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-play span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--emerald-600);
    font-size: 34px;
    box-shadow: 0 18px 42px rgba(5, 150, 105, 0.38);
}

.video-play.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-content {
    margin-top: 20px;
    padding: 30px;
}

.detail-content h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 800;
}

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

.detail-content h2 {
    margin: 28px 0 10px;
    font-size: 22px;
}

.detail-content p {
    margin: 0;
    color: var(--gray-700);
    font-size: 16px;
}

.detail-side {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 18px;
}

.poster-side {
    padding: 14px;
}

.poster-side img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 14px;
}

.side-card {
    padding: 20px;
}

.side-card h2 {
    margin: 0 0 14px;
}

.info-list {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 11px 12px;
    margin: 0;
    font-size: 14px;
}

.info-list dt {
    color: var(--gray-500);
}

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

.info-list a {
    color: var(--emerald-600);
}

.site-footer {
    margin-top: 50px;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr;
    gap: 46px;
    padding: 50px 0;
}

.footer-brand {
    color: var(--white);
}

.footer-brand small {
    color: var(--gray-400);
}

.footer-main p {
    max-width: 560px;
    color: var(--gray-400);
}

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

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--emerald-500);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-500);
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

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

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

    .split-side,
    .detail-side {
        position: static;
    }

    .top-rank-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: block;
    }

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

    .mobile-nav .nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
        background: var(--gray-50);
    }

    .mobile-nav .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .two-col,
    .three-col,
    .four-col,
    .category-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .overview-poster {
        min-height: 190px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .container,
    .header-inner,
    .mobile-nav {
        width: min(100% - 24px, var(--container));
    }

    .hero {
        height: 64vh;
        min-height: 470px;
    }

    .hero-content {
        bottom: 78px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-head {
        display: block;
    }

    .section-link {
        display: inline-block;
        margin-top: 10px;
    }

    .two-col,
    .three-col,
    .four-col,
    .category-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card {
        grid-template-columns: 1fr;
    }

    .rank-row a {
        grid-template-columns: 30px 58px minmax(0, 1fr);
    }

    .rank-views {
        display: none;
    }

    .filter-groups div {
        align-items: flex-start;
    }

    .page-hero {
        padding: 56px 0;
    }

    .detail-content {
        padding: 22px;
    }
}
