:root {
    --bg: #f8fafc;
    --paper: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(148, 163, 184, 0.28);
    --amber: #f59e0b;
    --orange: #f97316;
    --rose: #f43f5e;
    --teal: #14b8a6;
    --cyan: #06b6d4;
    --slate: #0f172a;
    --stone: #1c1917;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

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: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(41, 37, 36, 0.98), rgba(15, 23, 42, 0.98));
    color: #fff;
    border-bottom: 1px solid rgba(245, 158, 11, 0.28);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.32);
    transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

.brand-icon span {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 3px;
}

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

.brand-copy strong {
    font-size: clamp(19px, 2.2vw, 25px);
    line-height: 1.1;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.02em;
}

.brand-copy small {
    color: #cbd5e1;
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
    display: none;
}

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: #f8fafc;
    font-weight: 650;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 9px 13px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-current,
.mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
}

.menu-button {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.menu-button span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    padding: 10px 16px 18px;
    background: rgba(15, 23, 42, 0.96);
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

.mobile-link {
    padding: 11px 14px;
}

.hero-carousel {
    position: relative;
    min-height: clamp(610px, 82vh, 820px);
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-image,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(1.12) contrast(1.05);
}

.hero-shade,
.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(251, 146, 60, 0.35), transparent 32%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.36) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: clamp(610px, 82vh, 820px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    padding: 76px 0 100px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(42px, 8vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(16px, 2vw, 20px);
}

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

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

.hero-tags span,
.tag-row span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 15px;
    font-weight: 850;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    background: linear-gradient(90deg, var(--amber), var(--orange));
    color: #fff;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.3);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 54px rgba(249, 115, 22, 0.35);
}

.hero-poster {
    position: relative;
    display: block;
    isolation: isolate;
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: -6px;
    z-index: -1;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    filter: blur(14px);
    opacity: 0.8;
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.hero-controls button {
    border: 0;
    color: inherit;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 34px;
    line-height: 1;
    backdrop-filter: blur(14px);
}

.hero-dots {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(14px);
}

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

.hero-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.category-strip {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.category-strip h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.category-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chip {
    padding: 11px 17px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border: 1px solid rgba(245, 158, 11, 0.24);
    color: #9a3412;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.16);
}

.content-section {
    padding: clamp(48px, 7vw, 84px) 0;
}

.soft-bg {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

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

.section-head h2,
.ranking-copy h2,
.filter-panel h2,
.detail-block h2,
.side-panel h2,
.category-strip h2,
.site-footer h2 {
    margin: 4px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.035em;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    border-color: rgba(245, 158, 11, 0.48);
}

.card-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

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

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

.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.78));
}

.poster-play {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.94);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    min-width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 12px 26px rgba(244, 63, 94, 0.24);
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.card-body h2 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.card-body h2 a:hover {
    color: #ea580c;
}

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

.tag-row span {
    min-height: 26px;
    border-color: rgba(245, 158, 11, 0.18);
    background: #fff7ed;
    color: #9a3412;
    font-size: 12px;
}

.ranking-preview {
    padding: clamp(54px, 7vw, 90px) 0;
    background: linear-gradient(135deg, #0f172a, #292524);
    color: #fff;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: 38px;
    align-items: center;
}

.ranking-copy p {
    color: #cbd5e1;
    max-width: 480px;
    margin: 14px 0 26px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.rank-row:hover {
    background: rgba(245, 158, 11, 0.18);
}

.rank-row b {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-row small {
    color: #cbd5e1;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.28), transparent 32%), linear-gradient(135deg, #0f172a, #292524);
    color: #fff;
}

.compact-hero .container {
    padding: clamp(62px, 9vw, 112px) 0;
}

.compact-hero h1 {
    max-width: 780px;
    margin: 12px 0 14px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
    gap: 28px;
    align-items: center;
    margin-top: -38px;
    padding: 24px;
    position: relative;
    z-index: 4;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.filter-panel p {
    margin: 6px 0 0;
    color: var(--muted);
}

.filter-controls {
    display: grid;
    grid-template-columns: 1fr 160px 160px 160px;
    gap: 10px;
}

.filter-controls input,
.filter-controls select {
    min-height: 48px;
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    padding: 0 14px;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.empty-state {
    display: none;
    margin: 28px 0 0;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--line);
}

.empty-state.is-visible {
    display: block;
}

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

.category-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-covers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
    background: #0f172a;
}

.category-covers img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.category-card-body {
    padding: 20px;
}

.category-card-body h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
}

.category-card-body p {
    margin: 0 0 16px;
    color: var(--muted);
}

.category-card-body span {
    color: #ea580c;
    font-weight: 850;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

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

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

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

.detail-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
}

.detail-poster {
    border-radius: 26px;
    padding: 6px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 21px;
}

.detail-copy h1 {
    margin: 12px 0 14px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.detail-one-line {
    max-width: 820px;
    color: #e2e8f0;
    font-size: 19px;
    margin: 0 0 22px;
}

.detail-meta {
    margin-bottom: 18px;
}

.watch-section {
    padding: 58px 0 0;
    background: linear-gradient(180deg, #0f172a 0%, var(--bg) 100%);
}

.player-card {
    padding: 8px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(249, 115, 22, 0.84));
    box-shadow: var(--shadow);
}

.player-stage {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.player-stage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.78));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 22px 60px rgba(249, 115, 22, 0.38);
}

.play-icon::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid #fff;
    margin-left: 7px;
}

.play-overlay strong {
    font-size: 20px;
    letter-spacing: 0.08em;
}

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

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

.detail-block,
.side-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.detail-block + .detail-block {
    margin-top: 22px;
}

.detail-block p {
    margin: 16px 0 0;
    color: #475569;
    font-size: 17px;
}

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

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

.side-panel dt {
    color: var(--muted);
    font-weight: 750;
}

.side-panel dd {
    margin: 0;
    font-weight: 800;
}

.site-footer {
    background: linear-gradient(135deg, #0f172a, #1c1917);
    color: #cbd5e1;
    border-top: 1px solid rgba(245, 158, 11, 0.22);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.footer-brand {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 950;
}

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

.site-footer h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 16px;
    color: #94a3b8;
    text-align: center;
}

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

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

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

    .menu-button {
        display: flex;
    }

    .hero-content,
    .ranking-layout,
    .filter-panel,
    .detail-layout,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        max-width: 460px;
        margin: 0 auto;
    }

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

    .side-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        height: 66px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-copy small {
        display: none;
    }

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

    .hero-content {
        padding: 48px 0 94px;
    }

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

    .card-body {
        padding: 12px;
    }

    .card-body h2 {
        font-size: 15px;
    }

    .card-body p,
    .tag-row {
        display: none;
    }

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

    .rank-row {
        grid-template-columns: 42px 1fr;
    }

    .rank-row small {
        grid-column: 2;
    }

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

    .detail-block,
    .side-panel {
        padding: 20px;
    }

    .side-panel dl {
        grid-template-columns: 64px 1fr;
    }
}
