:root {
    --bg: #f8fafc;
    --bg-soft: #eef2f7;
    --bg-dark: #0f172a;
    --bg-panel: #111827;
    --text: #111827;
    --muted: #64748b;
    --line: #e2e8f0;
    --white: #ffffff;
    --accent: #dc2626;
    --accent-dark: #b91c1c;
    --accent-warm: #f97316;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: rgba(15, 23, 42, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(18px);
}

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

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

.site-logo span:last-child,
.footer-logo {
    font-size: 22px;
    background: linear-gradient(120deg, #f87171, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
    font-size: 14px;
}

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

.desktop-nav a,
.mobile-panel a,
.site-footer a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a {
    color: #e2e8f0;
    font-size: 15px;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-panel a:hover,
.site-footer a:hover {
    color: #f87171;
}

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

.header-search input,
.mobile-search input,
.filter-bar input {
    color: var(--white);
    background: rgba(51, 65, 85, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 10px 18px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus {
    border-color: rgba(248, 113, 113, 0.85);
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.16);
}

.header-search button,
.mobile-search button {
    color: var(--white);
    background: var(--accent);
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 28px;
    cursor: pointer;
}

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

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.mobile-panel nav a {
    color: #e2e8f0;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 14px;
    padding: 12px 14px;
}

.mobile-search {
    display: flex;
    gap: 10px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 16px;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    color: var(--white);
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.88)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-background-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 18% 24%, rgba(220, 38, 38, 0.35), transparent 32%),
        radial-gradient(circle at 70% 20%, rgba(249, 115, 22, 0.2), transparent 30%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.96), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1180px;
}

.hero-content > * {
    max-width: 720px;
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(220, 38, 38, 0.28);
}

.hero-content h1,
.page-hero h1 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 76px);
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.hero-content p {
    margin: 22px 0 0;
    color: #e5e7eb;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
}

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

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

.hero-tags span,
.tag-row span,
.category-chips a {
    border-radius: 999px;
    font-weight: 700;
}

.hero-tags span {
    padding: 8px 14px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.58);
    border: 1px solid rgba(248, 113, 113, 0.32);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
    color: #cbd5e1;
    font-weight: 700;
}

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

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

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

.btn-primary {
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 16px 35px rgba(220, 38, 38, 0.28);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    color: var(--white);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 34px;
    height: 6px;
    padding: 0;
    background: rgba(255, 255, 255, 0.36);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-section,
.content-section,
.split-section,
.detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-section {
    padding: 64px 0 24px;
}

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

.center-heading {
    display: block;
    text-align: center;
}

.section-heading h2,
.detail-main-card h2,
.detail-side-card h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-heading > a {
    color: var(--accent);
    font-weight: 800;
    white-space: nowrap;
}

.category-chips {
    justify-content: center;
    margin-top: 28px;
}

.category-chips a {
    padding: 11px 17px;
    color: #7f1d1d;
    background: #fee2e2;
    border: 1px solid #fecaca;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-chips a:hover {
    color: var(--white);
    background: var(--accent);
    transform: translateY(-2px);
}

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

.alt-bg {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(180deg, #fff7ed, #f8fafc);
}

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

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

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(248, 113, 113, 0.35);
    box-shadow: var(--shadow);
}

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

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

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

.rating-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    color: #78350f;
    background: #fef3c7;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

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

.movie-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card h3 a:hover {
    color: var(--accent);
}

.movie-card p {
    min-height: 52px;
    margin: 10px 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-card-small h3 {
    font-size: 15px;
}

.movie-card-small p {
    min-height: 42px;
    font-size: 13px;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 9px;
    color: #1e3a8a;
    background: #dbeafe;
    font-size: 12px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    padding: 56px 0;
}

.panel-large,
.rank-panel,
.detail-main-card,
.detail-side-card,
.overview-card,
.filter-bar {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.panel-large,
.rank-panel {
    padding: 28px;
}

.category-grid,
.overview-grid {
    display: grid;
    gap: 18px;
}

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

.category-card,
.overview-main {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    border-radius: var(--radius-lg);
    background-image: linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.18)), var(--cat-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.category-card:hover,
.overview-main:hover {
    transform: translateY(-4px);
    filter: saturate(1.08);
}

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

.category-card p,
.overview-main p {
    margin: 8px 0 0;
    color: #e2e8f0;
    font-size: 14px;
}

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

.rank-list-full {
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 38px 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    background: #fff1f2;
    border-color: #fecdd3;
    transform: translateX(4px);
}

.rank-number {
    color: var(--accent);
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
}

.rank-item img {
    width: 56px;
    height: 76px;
    object-fit: cover;
    border-radius: 10px;
    background: #111827;
}

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

.rank-info strong,
.compact-card strong {
    display: block;
    overflow: hidden;
    color: var(--text);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em,
.compact-card span {
    display: block;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-hot {
    color: #7f1d1d;
    font-weight: 800;
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.34), transparent 30%),
        linear-gradient(135deg, #0f172a, #1e293b 50%, #7f1d1d);
}

.page-hero > div {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0;
}

.slim-hero > div {
    padding: 74px 0;
}

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

.page-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    color: #e2e8f0;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fecaca;
}

.filter-bar {
    margin-bottom: 28px;
    padding: 20px;
}

.filter-bar label {
    display: grid;
    gap: 10px;
    color: #334155;
    font-weight: 800;
}

.filter-bar input {
    width: 100%;
    color: var(--text);
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 16px;
}

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

.overview-card {
    overflow: hidden;
}

.overview-main {
    border-radius: 0;
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
}

.overview-links a {
    padding: 7px 10px;
    color: #7f1d1d;
    background: #fee2e2;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.player-section {
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.22), transparent 28%),
        linear-gradient(180deg, #0f172a, #111827);
    padding: 38px 0 54px;
}

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

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.7));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    border-radius: 50%;
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.36);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.detail-main-card,
.detail-side-card {
    padding: 28px;
}

.detail-main-card .breadcrumb {
    color: var(--muted);
}

.detail-main-card .breadcrumb a:hover {
    color: var(--accent);
}

.detail-main-card h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

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

.detail-meta span {
    padding: 7px 11px;
    color: #334155;
    background: #f1f5f9;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.detail-one-line {
    margin: 24px 0;
    padding: 18px 20px;
    color: #7f1d1d;
    background: #fff1f2;
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
}

.detail-main-card h2,
.detail-side-card h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 24px;
}

.detail-main-card p {
    margin: 0 0 18px;
    color: #334155;
    font-size: 17px;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: #111827;
    box-shadow: var(--shadow-soft);
}

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

.compact-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
    transform: translateY(-2px);
    background: #fff1f2;
}

.compact-card img {
    width: 58px;
    height: 78px;
    object-fit: cover;
    border-radius: 10px;
    background: #111827;
}

.related-section {
    padding-top: 42px;
}

.site-footer {
    margin-top: 30px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.footer-inner p {
    margin: 0;
}

.footer-inner nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

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

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

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

    .detail-side-card {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
        align-items: start;
    }

    .detail-side-card h2 {
        margin-top: 0;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    .header-inner {
        height: 64px;
    }

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

    .hero-content {
        padding-top: 70px;
    }

    .hero-control {
        display: none;
    }

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

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .rank-item {
        grid-template-columns: 30px 52px minmax(0, 1fr);
    }

    .rank-hot {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-logo span:last-child {
        font-size: 18px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 12px;
    }

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

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

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-card p {
        display: none;
    }

    .tag-row {
        display: none;
    }

    .detail-main-card,
    .detail-side-card,
    .panel-large,
    .rank-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .detail-side-card {
        display: block;
    }

    .detail-poster {
        max-width: 240px;
        margin: 0 auto 20px;
    }

    .play-overlay span {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

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