* {
    box-sizing: border-box;
}

:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --amber-950: #451a03;
    --ink: #2f1604;
    --muted: #8a5a1c;
    --panel: rgba(255, 255, 255, 0.92);
    --line: rgba(180, 83, 9, 0.22);
    --shadow: 0 18px 45px rgba(69, 26, 3, 0.14);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(253, 230, 138, 0.9), transparent 32rem), linear-gradient(180deg, var(--amber-50), #fff8e1 45%, var(--amber-50));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 2px solid var(--amber-200);
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.97), rgba(255, 247, 210, 0.95), rgba(255, 251, 235, 0.97));
    box-shadow: 0 8px 24px rgba(120, 53, 15, 0.12);
    backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
    box-shadow: 0 12px 25px rgba(180, 83, 9, 0.26);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    color: var(--amber-950);
    font-size: clamp(20px, 2.2vw, 29px);
    letter-spacing: 0.04em;
}

.brand-copy small {
    color: var(--amber-600);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.nav-link {
    color: var(--amber-800);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--amber-950);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: var(--amber-800);
    background: rgba(254, 243, 199, 0.85);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-button:hover {
    color: var(--amber-950);
    background: var(--amber-200);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
}

.search-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 0 0 18px;
}

.search-panel.is-open {
    display: block;
}

.search-box {
    position: relative;
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
}

.search-box input,
.page-filter input {
    width: 100%;
    border: 2px solid var(--amber-300);
    border-radius: 16px;
    outline: none;
    background: #fff;
    color: var(--ink);
    padding: 13px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.page-filter input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 90;
    overflow: hidden;
    border: 2px solid var(--amber-200);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.search-result {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid var(--amber-100);
}

.search-result:last-child {
    border-bottom: 0;
}

.search-result:hover {
    background: var(--amber-50);
}

.search-result img {
    width: 62px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
}

.search-result strong {
    display: block;
    color: var(--amber-950);
}

.search-result span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.mobile-nav {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--amber-900);
    background: rgba(254, 243, 199, 0.85);
    font-weight: 700;
}

.hero-carousel,
.sub-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    min-height: 680px;
    background: var(--amber-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-image: linear-gradient(90deg, rgba(69, 26, 3, 0.95), rgba(69, 26, 3, 0.58), rgba(69, 26, 3, 0.18)), var(--hero-image);
    background-size: cover;
    background-position: center;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.03);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 25%, rgba(252, 211, 77, 0.28), transparent 26rem), linear-gradient(180deg, transparent, rgba(69, 26, 3, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    align-items: center;
    gap: 58px;
    padding: 96px 0 80px;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(253, 230, 138, 0.4);
    border-radius: 999px;
    color: var(--amber-100);
    background: rgba(120, 53, 15, 0.45);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.sub-hero h1,
.detail-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.hero-line,
.detail-copy p,
.sub-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #fff7d6;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

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

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--amber-800);
    background: var(--amber-100);
    font-size: 12px;
    font-weight: 800;
}

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

.hero-tags span,
.detail-copy .tag-row span {
    color: #fff8dc;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(253, 230, 138, 0.25);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
    box-shadow: 0 16px 35px rgba(180, 83, 9, 0.3);
}

.ghost-button {
    color: #fff8dc;
    border: 1px solid rgba(253, 230, 138, 0.44);
    background: rgba(69, 26, 3, 0.38);
}

.text-button {
    min-height: auto;
    padding: 9px 13px;
    color: var(--amber-800);
    background: var(--amber-100);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(120, 53, 15, 0.18);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.15);
    border-radius: 34px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: -1;
    border-radius: inherit;
    background: var(--amber-200);
    transform: translate(18px, 18px) rotate(-5deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.1;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(69, 26, 3, 0.78);
    padding: 9px 12px;
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-controls button {
    pointer-events: auto;
}

.hero-controls > button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(253, 230, 138, 0.35);
    border-radius: 999px;
    color: #fff8dc;
    background: rgba(69, 26, 3, 0.48);
    font-size: 30px;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 32px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active {
    background: var(--amber-300);
}

.quick-search-band {
    padding: 18px 0;
    background: linear-gradient(90deg, var(--amber-900), var(--amber-700));
    color: var(--amber-50);
}

.search-band-inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 18px;
    align-items: center;
}

.search-band-inner strong {
    display: block;
    font-size: 20px;
}

.search-band-inner span {
    color: var(--amber-100);
}

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

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

.section-heading h2 {
    margin: 0;
    color: var(--amber-950);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

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

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--amber-800);
    font-weight: 900;
}

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

.category-card,
.category-overview-card,
.movie-card,
.rank-item,
.detail-panel,
.player-card {
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 22px;
    isolation: isolate;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(69, 26, 3, 0.18);
}

.category-card img {
    position: absolute;
    right: -22px;
    bottom: -30px;
    z-index: -1;
    width: 145px;
    height: 185px;
    border-radius: 22px;
    object-fit: cover;
    opacity: 0.34;
    transform: rotate(9deg);
}

.category-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
    font-weight: 900;
}

.category-card strong,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: var(--amber-950);
    font-size: 22px;
}

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

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

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

.movie-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--amber-200);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 2.85;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.poster-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(69, 26, 3, 0.78));
}

.play-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    background: rgba(180, 83, 9, 0.88);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

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

.movie-card h3 {
    margin: 8px 0 7px;
    color: var(--amber-950);
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

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

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

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

.rank-item {
    display: grid;
    grid-template-columns: 74px 56px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
}

.rank-cover img {
    width: 74px;
    height: 92px;
    border-radius: 16px;
    object-fit: cover;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-800), var(--amber-500));
    font-weight: 900;
}

.rank-content h3 {
    margin: 0 0 6px;
    color: var(--amber-950);
    font-size: 18px;
}

.rank-content p {
    margin: 0 0 9px;
    color: var(--muted);
    line-height: 1.6;
}

.sub-hero {
    min-height: 330px;
    padding: 86px 0 66px;
    background: linear-gradient(135deg, var(--amber-900), var(--amber-700));
}

.category-hero,
.ranking-hero {
    background-image: linear-gradient(90deg, rgba(69, 26, 3, 0.92), rgba(69, 26, 3, 0.66)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.sub-hero .container {
    position: relative;
    z-index: 2;
}

.wide-filter {
    max-width: 560px;
    margin-top: 28px;
}

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

.category-overview-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px;
    padding: 16px;
}

.category-thumb-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-thumb-wall img {
    width: 100%;
    height: 112px;
    border-radius: 14px;
    object-fit: cover;
}

.detail-hero {
    min-height: 620px;
    background-image: linear-gradient(90deg, rgba(69, 26, 3, 0.96), rgba(69, 26, 3, 0.62), rgba(69, 26, 3, 0.3)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 42px 0 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--amber-100);
    font-weight: 800;
}

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

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

.detail-poster {
    position: relative;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 2.85;
    object-fit: cover;
}

.detail-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
    font-weight: 900;
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(180, 83, 9, 0.24), rgba(0, 0, 0, 0.78));
    text-align: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.overlay-play {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
    font-size: 34px;
}

.player-overlay strong {
    font-size: 22px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
    padding-top: 30px;
}

.detail-panel {
    padding: 26px;
}

.detail-panel h2 {
    margin: 0 0 18px;
    color: var(--amber-950);
    font-size: 26px;
}

.detail-panel p {
    margin: 0 0 14px;
    color: #5f370b;
    line-height: 1.9;
}

.info-panel dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px 18px;
    margin: 0;
}

.info-panel dt {
    color: var(--amber-700);
    font-weight: 900;
}

.info-panel dd {
    margin: 0;
    color: var(--ink);
}

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

.site-footer {
    margin-top: 70px;
    padding: 34px 0;
    color: var(--amber-100);
    background: linear-gradient(135deg, var(--amber-950), var(--amber-900));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
}

.footer-brand {
    color: #fff;
    font-size: 24px;
}

.site-footer p {
    max-width: 520px;
    margin: 10px 0 0;
    line-height: 1.7;
}

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

.footer-links a {
    color: var(--amber-100);
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

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

    .hero-content,
    .detail-grid,
    .detail-content-grid,
    .search-band-inner,
    .footer-inner,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 32px;
        padding-top: 80px;
    }

    .hero-poster,
    .detail-poster {
        max-width: 320px;
    }

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

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

@media (max-width: 680px) {
    .header-inner {
        height: 68px;
    }

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

    .brand-copy small {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 62px 0 86px;
    }

    .hero-poster {
        display: none;
    }

    .hero-controls {
        bottom: 18px;
    }

    .hero-controls > button {
        width: 42px;
        height: 42px;
    }

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

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

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

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

    .tag-row span:nth-child(n+3) {
        display: none;
    }

    .rank-item {
        grid-template-columns: 58px 1fr;
        gap: 12px;
    }

    .rank-number {
        position: absolute;
        left: 18px;
        top: 18px;
        width: 36px;
        height: 36px;
    }

    .rank-item {
        position: relative;
    }

    .rank-cover img {
        width: 58px;
        height: 76px;
    }

    .rank-item .text-button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .sub-hero,
    .detail-hero {
        min-height: 0;
    }

    .detail-hero-inner {
        padding-bottom: 46px;
    }

    .detail-copy h1,
    .sub-hero h1,
    .hero-copy h1 {
        font-size: 38px;
    }

    .info-panel dl {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
