:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-solid: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.58);
    --border: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --accent: #fbbf24;
    --accent-strong: #f59e0b;
    --cyan: #22d3ee;
    --emerald: #34d399;
    --rose: #fb7185;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(251, 191, 36, 0.12), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.08), transparent 24rem),
        linear-gradient(180deg, #020617 0%, #0f172a 54%, #020617 100%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.28);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #cbd5e1;
    font-weight: 650;
}

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--accent);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.76);
}

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

.mobile-panel a {
    display: block;
    padding: 12px 0;
    color: #cbd5e1;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-panel a:hover,
.mobile-panel a.is-active {
    color: var(--accent);
}

.page-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 70px;
}

.hero {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    margin: 0 calc((100vw - min(1180px, calc(100vw - 32px))) / -2) 56px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: #020617;
}

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

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

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

.hero-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: transform 5.5s ease;
}

.hero-slide.is-active .hero-image {
    transform: scale(1);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.9) 36%, rgba(15, 23, 42, 0.28) 72%, rgba(2, 6, 23, 0.92) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, transparent 48%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr);
    gap: 42px;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0 84px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--accent);
    font-weight: 750;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #cbd5e1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(251, 191, 36, 0.26);
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent);
    font-size: 13px;
    font-weight: 750;
}

.badge-soft {
    border-color: rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.62);
    color: #dbeafe;
}

.hero-summary {
    max-width: 660px;
    margin: 0 0 30px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0f172a;
    box-shadow: 0 18px 42px rgba(251, 191, 36, 0.24);
}

.btn-secondary {
    border-color: rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
}

.hero-poster-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.58);
    box-shadow: var(--shadow);
}

.hero-poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    opacity: 0.92;
}

.hero-poster-info {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 13px 15px;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(14px);
}

.hero-poster-title {
    font-weight: 800;
}

.hero-poster-meta {
    margin-top: 4px;
    color: #cbd5e1;
    font-size: 13px;
}

.hero-control {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.62);
    color: #fff;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
}

.hero-control:hover {
    background: rgba(15, 23, 42, 0.9);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 38px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.34);
}

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

.section {
    margin-bottom: 58px;
}

.section-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    background: var(--panel);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading h2,
.section-heading h1 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.55), transparent);
}

.section-subtitle {
    max-width: 780px;
    margin: -10px 0 24px;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.movie-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    border-color: rgba(251, 191, 36, 0.56);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
    transform: translateY(-5px);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.7);
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.48s ease, opacity 0.3s ease;
}

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

.poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.movie-card:hover .poster-overlay {
    opacity: 1;
}

.play-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.92);
    color: #0f172a;
    font-size: 22px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.rating-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    padding: 5px 8px;
    background: rgba(2, 6, 23, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    backdrop-filter: blur(10px);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 2.8em;
    margin: 0 0 9px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 9px;
    color: #94a3b8;
    font-size: 12px;
}

.movie-card-desc {
    display: -webkit-box;
    min-height: 3.9em;
    margin: 0 0 12px;
    overflow: hidden;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-flex;
    border-radius: 8px;
    padding: 4px 7px;
    background: rgba(51, 65, 85, 0.76);
    color: #cbd5e1;
    font-size: 11px;
    line-height: 1;
}

.scroll-row-wrap {
    position: relative;
}

.scroll-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-row .movie-card {
    flex: 0 0 210px;
}

.scroll-button {
    position: absolute;
    z-index: 5;
    top: 42%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.86);
    color: #fff;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.scroll-left {
    left: -12px;
}

.scroll-right {
    right: -12px;
}

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

.category-card {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(251, 191, 36, 0.12), transparent 38%),
        rgba(15, 23, 42, 0.68);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    border-color: rgba(251, 191, 36, 0.42);
    transform: translateY(-4px);
}

.category-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
}

.category-card span {
    margin-top: 18px;
    color: var(--accent);
    font-weight: 800;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 26px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.64);
}

.search-input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    outline: none;
    padding: 13px 18px;
    background: rgba(2, 6, 23, 0.72);
    color: #e2e8f0;
}

.search-input:focus {
    border-color: rgba(251, 191, 36, 0.72);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.filter-button {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(30, 41, 59, 0.68);
    color: #cbd5e1;
    font-weight: 750;
}

.filter-button:hover,
.filter-button.is-active {
    border-color: rgba(251, 191, 36, 0.4);
    background: var(--accent);
    color: #0f172a;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 122px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    padding: 14px;
    background: rgba(15, 23, 42, 0.6);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
    background: rgba(30, 41, 59, 0.76);
    transform: translateX(4px);
}

.rank-number {
    color: var(--rose);
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 12px;
}

.rank-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.rank-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 850;
}

.rank-desc {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #94a3b8;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    color: #cbd5e1;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
    color: #94a3b8;
    font-size: 14px;
}

.breadcrumb a {
    color: #cbd5e1;
}

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

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

.player-card {
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 26px;
    background: rgba(2, 6, 23, 0.72);
    box-shadow: var(--shadow);
}

.player-stage {
    position: relative;
    background: #000;
}

.player-stage video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    background: rgba(2, 6, 23, 0.4);
    color: #fff;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.player-overlay::after {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle, rgba(251, 191, 36, 0.16), rgba(2, 6, 23, 0.78));
}

.player-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0f172a;
    font-size: 34px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.detail-copy {
    padding: 26px;
}

.detail-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

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

.detail-section {
    margin-top: 26px;
}

.detail-section h2,
.detail-section h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
}

.detail-section p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
}

.side-card {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    padding: 18px;
    background: rgba(15, 23, 42, 0.62);
}

.side-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 18px;
    object-fit: cover;
}

.side-card h2 {
    margin: 16px 0 10px;
    font-size: 22px;
}

.side-meta {
    display: grid;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.76);
}

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

.footer-inner h3,
.footer-inner h4 {
    margin: 0 0 14px;
}

.footer-inner p,
.footer-inner li {
    margin: 0;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-inner ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-inner a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: #64748b;
    text-align: center;
    padding: 18px;
    font-size: 13px;
}

.empty-result {
    display: none;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    padding: 26px;
    color: #94a3b8;
    text-align: center;
    background: rgba(15, 23, 42, 0.62);
}

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

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

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

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

    .side-card {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 18px;
    }
}

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

    .menu-toggle {
        display: inline-flex;
    }

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

    .hero {
        min-height: 680px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .hero-poster-card {
        max-width: 310px;
    }

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

    .filter-buttons {
        justify-content: flex-start;
    }

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

    .rank-item .btn {
        grid-column: 2 / -1;
        justify-self: start;
    }

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

@media (max-width: 640px) {
    .page-main {
        width: min(100% - 24px, 1180px);
        padding-top: 24px;
    }

    .site-nav,
    .mobile-panel,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        margin-right: -12px;
        margin-left: -12px;
        min-height: 660px;
    }

    .hero-inner {
        width: min(100% - 24px, 1180px);
        gap: 26px;
    }

    .hero-control {
        display: none;
    }

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

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

    .section-panel {
        padding: 18px;
    }

    .scroll-row .movie-card {
        flex-basis: 176px;
    }

    .rank-item {
        grid-template-columns: 34px 82px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .rank-title {
        font-size: 16px;
    }

    .rank-desc {
        display: none;
    }

    .detail-copy {
        padding: 18px;
    }

    .side-card {
        display: block;
    }

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