* {
    box-sizing: border-box;
}

:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --dark: #020617;
    --soft: rgba(15, 23, 42, 0.08);
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.12), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #eef5ff 48%, #f8fafc 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    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;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

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

.brand-text strong {
    font-size: 20px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

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

.nav-link,
.mobile-link {
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid #cbd5e1;
    outline: 0;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--text);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.header-search button,
.mobile-search button,
.btn,
.section-more {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.btn:hover,
.section-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.28);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.btn.small {
    display: inline-flex;
    padding: 9px 15px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    border-radius: 3px;
    background: var(--text);
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.mobile-panel.open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.hero-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #020617;
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

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

.hero-bg,
.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 38%, rgba(6, 182, 212, 0.26), transparent 24%), linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.62) 46%, rgba(2, 6, 23, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 56px;
    padding-top: 44px;
}

.hero-kicker,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 16px 0 0;
    color: #ffffff;
    line-height: 1.05;
}

.hero-copy h1 {
    max-width: 740px;
    font-size: clamp(36px, 6vw, 76px);
}

.hero-copy h2 {
    max-width: 680px;
    font-size: clamp(30px, 4.2vw, 56px);
}

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

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

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

.hero-tags span,
.tag-row span,
.genre-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
}

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

.hero-poster {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(14px);
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: transparent;
}

.hero-prev,
.hero-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.14);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dot.active {
    width: 28px;
    background: #ffffff;
}

.quick-entry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -36px;
    position: relative;
    z-index: 4;
}

.quick-entry a {
    display: grid;
    place-items: center;
    min-height: 86px;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 26px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    font-size: 18px;
    font-weight: 900;
    backdrop-filter: blur(16px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.quick-entry a:hover,
.category-tile:hover,
.movie-card:hover,
.category-card-large:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.32);
}

.section-block,
.two-column-block,
.category-overview,
.detail-layout,
.player-section {
    margin-top: 62px;
}

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

.section-head h2,
.rank-panel-head h2,
.story-card h2,
.side-card h2 {
    margin: 7px 0 0;
    color: var(--text);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
}

.section-head p {
    max-width: 640px;
    margin: 8px 0 0;
    color: var(--muted);
}

.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.09);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}

.poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ecfeff);
}

.poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), transparent);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 14px 28px rgba(239, 68, 68, 0.3);
}

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

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

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

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

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

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

.tag-row span {
    color: #1e40af;
    background: #eff6ff;
}

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

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

.two-column-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 26px;
}

.rank-panel,
.story-card,
.side-card,
.filter-panel,
.category-card-large {
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 18px;
    background: #f8fafc;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    background: #eff6ff;
}

.rank-row span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-weight: 900;
}

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

.rank-row em {
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.14);
    transition: transform 0.2s ease;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.35s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent 70%);
}

.category-tile span,
.category-tile small {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 20px;
    color: #ffffff;
}

.category-tile span {
    margin-top: 128px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
}

.page-hero {
    padding: 70px 0 22px;
}

.page-hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 26px;
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border-radius: 18px;
}

.category-card-large h2 {
    margin: 8px 0;
    font-size: 32px;
}

.category-card-large p {
    color: var(--muted);
}

.category-sample {
    color: #334155;
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr minmax(180px, 260px) 160px 160px;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
}

.filter-title {
    align-self: center;
    font-size: 20px;
    font-weight: 900;
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

.detail-bg,
.detail-shade {
    position: absolute;
    inset: 0;
}

.detail-shade {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.42)), linear-gradient(0deg, #020617, transparent 46%);
}

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

.breadcrumb,
.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.breadcrumb:hover {
    color: #ffffff;
}

.detail-intro {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
    margin-top: 44px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.44);
}

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

.detail-copy h1 {
    max-width: 820px;
    margin: 14px 0 16px;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.05;
}

.one-line {
    max-width: 760px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 800;
}

.detail-tags span {
    color: #e0f2fe;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(125, 211, 252, 0.2);
}

.detail-copy .btn {
    display: inline-flex;
    margin-top: 24px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    background: #020617;
}

.player-cover.hidden {
    display: none;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: blur(1px) saturate(1.05);
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.34), transparent 32%), linear-gradient(0deg, rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.22));
}

.play-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 40px;
    box-shadow: 0 22px 60px rgba(37, 99, 235, 0.42);
}

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

.story-card,
.side-card {
    padding: 26px;
}

.story-card p {
    color: #334155;
    font-size: 17px;
}

.genre-row {
    margin-top: 22px;
}

.genre-row span {
    color: #075985;
    background: #ecfeff;
}

.side-card {
    position: sticky;
    top: 96px;
}

.side-card dl {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.side-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.side-card dd {
    margin: -8px 0 0;
    color: #0f172a;
    font-weight: 800;
}

.site-footer {
    margin-top: 76px;
    color: #cbd5e1;
    background: #020617;
}

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

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.footer-inner p {
    max-width: 560px;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    gap: 12px;
    min-width: 150px;
}

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

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #64748b;
}

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

    .menu-toggle {
        display: block;
    }

    .hero-content,
    .two-column-block,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

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

    .rank-panel,
    .side-card {
        position: static;
    }

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

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

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

    .hero-carousel {
        min-height: 610px;
    }

    .hero-content {
        display: flex;
        align-items: center;
        padding-top: 26px;
    }

    .quick-entry {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-head,
    .footer-inner {
        display: block;
    }

    .section-more {
        margin-top: 16px;
    }

    .movie-grid,
    .small-grid,
    .ranking-grid,
    .dense-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

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

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

    .category-card-large,
    .detail-intro {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 250px;
    }

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

    .play-icon {
        width: 72px;
        height: 72px;
        font-size: 30px;
    }
}

@media (max-width: 460px) {
    .container,
    .header-inner,
    .mobile-panel,
    .footer-inner,
    .copyright {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-copy h2,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 34px;
    }

    .quick-entry,
    .movie-grid,
    .small-grid,
    .ranking-grid,
    .dense-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }
}
