:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --card: rgba(15, 23, 42, 0.78);
    --card-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(59, 130, 246, 0.24);
    --line-strong: rgba(59, 130, 246, 0.48);
    --text: #f8fafc;
    --muted: #94a3b8;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --green: #22c55e;
    --amber: #f59e0b;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.55);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.26), transparent 32rem),
        radial-gradient(circle at 85% 10%, rgba(6, 182, 212, 0.18), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #07111f 48%, #020617 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.78);
    border-bottom: 1px solid rgba(59, 130, 246, 0.18);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.38);
}

.brand-name {
    font-size: 18px;
    color: #dbeafe;
}

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

.nav-link,
.mobile-nav-link {
    color: #cbd5e1;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.14);
}

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

.header-search input,
.mobile-search input,
.site-filter,
.filter-panel select,
.search-page-form input {
    min-width: 0;
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #e5e7eb;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 9px 14px;
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: white;
    background: rgba(37, 99, 235, 0.82);
}

.header-search input:focus,
.mobile-search input:focus,
.site-filter:focus,
.filter-panel select:focus,
.search-page-form input:focus {
    border-color: rgba(96, 165, 250, 0.85);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
    background: rgba(15, 23, 42, 0.92);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.68);
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #bfdbfe;
}

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

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

.mobile-nav-link {
    padding: 10px 14px;
}

.mobile-search input {
    width: 100%;
    padding: 10px 14px;
}

main {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    padding: 32px 0 22px;
}

.hero-slider,
.hero-panel,
.page-hero,
.category-overview-card,
.player-box,
.detail-side,
.detail-copy article,
.ranking-row,
.search-results-head {
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(15, 23, 42, 0.64);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-slider {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 32px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.58) 48%, rgba(2, 6, 23, 0.24)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.98), transparent 52%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 54px;
}

.hero-label,
.section-kicker,
.panel-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 999px;
    padding: 6px 12px;
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.16);
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1,
.page-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-content p,
.page-hero p,
.hero-panel p,
.section-heading p,
.category-overview-card p,
.detail-one-line,
.detail-copy p {
    color: #cbd5e1;
}

.hero-content p {
    max-width: 660px;
    font-size: 18px;
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(14, 165, 233, 0.24);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
}

.tag-row span {
    padding: 4px 8px;
}

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

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
    border: 0;
    padding: 12px 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
}

.primary-button.small {
    padding: 9px 15px;
    font-size: 14px;
}

.ghost-button,
.section-more {
    border: 1px solid rgba(96, 165, 250, 0.34);
    padding: 11px 18px;
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.42);
}

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

.hero-dots {
    position: absolute;
    right: 34px;
    bottom: 32px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(203, 213, 225, 0.5);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #38bdf8;
}

.hero-panel {
    border-radius: 32px;
    padding: 28px;
}

.hero-panel h2 {
    margin: 16px 0 10px;
    font-size: 30px;
    line-height: 1.15;
}

.hero-mini-list,
.category-preview-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.mini-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.32);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.46);
    background: rgba(15, 23, 42, 0.72);
}

.mini-card img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
    background: #0f172a;
}

.mini-card strong,
.mini-card em {
    display: block;
}

.mini-card strong {
    overflow: hidden;
    color: #f8fafc;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mini-card em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

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

.section-heading h2 {
    margin: 10px 0 6px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

.category-tile {
    position: relative;
    min-height: 148px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 24px;
    padding: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.22), transparent 40%),
        rgba(15, 23, 42, 0.7);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.52);
}

.category-tile span,
.category-tile strong,
.category-tile em {
    display: block;
}

.category-tile span {
    color: #dbeafe;
    font-size: 20px;
    font-weight: 800;
}

.category-tile strong {
    margin-top: 12px;
    color: #67e8f9;
    font-size: 38px;
    line-height: 1;
}

.category-tile em {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.site-filter,
.filter-panel select {
    padding: 12px 16px;
}

.site-filter {
    min-width: min(100%, 360px);
}

.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.18);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.34);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.52);
    box-shadow: 0 24px 60px rgba(30, 58, 138, 0.26);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #0f172a;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent 58%);
    opacity: 0.72;
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: rgba(37, 99, 235, 0.9);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

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

.movie-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-card h3 a:hover {
    color: #93c5fd;
}

.movie-card p {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    margin: 0 0 12px;
    color: #a8b3c7;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-card.is-compact .movie-card-body {
    padding: 13px;
}

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

.movie-card.is-compact p {
    display: none;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 48px 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.62);
}

.rank-number,
.ranking-index {
    color: #67e8f9;
    font-weight: 900;
}

.rank-number {
    font-size: 22px;
}

.rank-card img {
    width: 72px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-info strong,
.rank-info em {
    display: block;
}

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

.rank-info em {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.page-hero {
    margin: 32px 0 18px;
    border-radius: 32px;
    padding: clamp(28px, 5vw, 58px);
    background:
        radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 47, 73, 0.52));
}

.compact-page-hero {
    min-height: 280px;
    display: grid;
    align-content: center;
}

.category-page-hero {
    min-height: 360px;
}

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

.category-overview-card {
    border-radius: 28px;
    padding: 22px;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.category-overview-head span {
    font-size: 22px;
    font-weight: 900;
}

.category-overview-head strong {
    color: #67e8f9;
    font-size: 34px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 28px 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover,
.detail-meta-list a:hover {
    color: #93c5fd;
}

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
}

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

.player-start-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: white;
    background:
        radial-gradient(circle, rgba(37, 99, 235, 0.32), transparent 26%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.12));
}

.player-start-button span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 22px 48px rgba(37, 99, 235, 0.42);
    font-size: 32px;
}

.player-start-button.is-hidden {
    display: none;
}

.detail-text-block {
    margin-top: 22px;
    padding: 6px 2px;
}

.detail-text-block h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.1;
}

.detail-one-line {
    margin: 0 0 18px;
    font-size: 18px;
}

.detail-side {
    position: sticky;
    top: 96px;
    border-radius: 28px;
    padding: 18px;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 22px;
    background: #0f172a;
}

.detail-meta-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.detail-meta-list div {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-meta-list dt {
    color: #93c5fd;
    font-weight: 800;
}

.detail-meta-list dd {
    margin: 0;
    color: #e5e7eb;
}

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

.detail-copy article {
    border-radius: 28px;
    padding: 24px;
}

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

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

.ranking-row {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-row:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.5);
}

.ranking-link {
    display: grid;
    grid-template-columns: 58px 68px minmax(0, 1fr) minmax(160px, 260px) minmax(160px, 240px);
    gap: 14px;
    align-items: center;
    padding: 12px 16px;
}

.ranking-index {
    text-align: center;
    font-size: 22px;
}

.ranking-link img {
    width: 68px;
    height: 86px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.ranking-main strong,
.ranking-main em {
    display: block;
}

.ranking-main strong {
    font-size: 18px;
}

.ranking-main em,
.ranking-meta {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.ranking-tags {
    justify-content: flex-end;
}

.search-page-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.search-page-form input {
    width: min(100%, 520px);
    padding: 14px 18px;
}

.search-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    border-radius: 22px;
    padding: 18px 22px;
}

.search-results-head h2 {
    margin: 0;
}

.search-results-head span {
    color: #93c5fd;
}

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

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 0 26px;
}

.footer-inner p {
    max-width: 560px;
    color: var(--muted);
}

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

.footer-links a {
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.46);
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: #64748b;
    font-size: 13px;
}

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

@media (max-width: 1080px) {
    .hero-shell,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .detail-side {
        position: static;
    }

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

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

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

    .ranking-link {
        grid-template-columns: 48px 64px minmax(0, 1fr);
    }

    .ranking-meta,
    .ranking-tags {
        display: none;
    }
}

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

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-content {
        padding: 34px 24px 72px;
    }

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

    .hero-dots {
        left: 24px;
        right: auto;
        bottom: 26px;
    }

    .section-heading,
    .footer-inner,
    .search-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 560px) {
    main,
    .header-inner,
    .mobile-nav,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1280px);
    }

    .brand-name {
        font-size: 16px;
    }

    .hero-shell {
        padding-top: 18px;
    }

    .hero-slider,
    .hero-panel,
    .page-hero,
    .category-overview-card,
    .player-box,
    .detail-side,
    .detail-copy article {
        border-radius: 22px;
    }

    .hero-slider {
        min-height: 520px;
    }

    .hero-content p,
    .page-hero p,
    .detail-one-line {
        font-size: 15px;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .rank-grid,
    .detail-copy {
        grid-template-columns: 1fr;
    }

    .rank-card {
        grid-template-columns: 44px 64px minmax(0, 1fr);
    }

    .detail-meta-list div {
        grid-template-columns: 64px minmax(0, 1fr);
    }
}
