:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --border: rgba(148, 163, 184, 0.2);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --accent: #10b981;
    --accent-2: #14b8a6;
    --accent-soft: rgba(16, 185, 129, 0.18);
    --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(20, 184, 166, 0.18), transparent 30rem),
        radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.16), transparent 34rem),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 28px rgba(16, 185, 129, 0.38);
}

.brand-text {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #34d399, #5eead4);
    -webkit-background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--soft);
}

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

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
    color: #34d399;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.75);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid var(--border);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    color: var(--soft);
}

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

main {
    padding-top: 68px;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
}

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

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

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

.hero-slide img,
.detail-bg,
.ranking-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.82) 42%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(to top, rgba(2, 6, 23, 0.95), transparent 42%);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
    padding: 72px 0;
}

.hero-content h1 {
    width: min(720px, 100%);
    margin: 14px 0 18px;
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.hero-content p {
    width: min(680px, 100%);
    margin: 0 0 24px;
    color: var(--soft);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.8;
}

.hero-kicker,
.section-heading span,
.page-hero span,
.ranking-hero span,
.compact-heading span {
    color: #34d399;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-tags,
.detail-meta,
.movie-card-meta,
.tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 999px;
    color: #a7f3d0;
    background: var(--accent-soft);
}

.hero-tags span,
.detail-meta span {
    padding: 7px 12px;
}

.tag-row span {
    padding: 5px 8px;
    font-size: 0.75rem;
}

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

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

.primary-button,
.quick-search button {
    color: white;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 36px rgba(16, 185, 129, 0.28);
}

.primary-button:hover,
.quick-search button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 44px rgba(16, 185, 129, 0.38);
}

.ghost-button {
    border: 1px solid var(--border);
    color: var(--soft);
    background: rgba(15, 23, 42, 0.58);
}

.ghost-button:hover {
    color: white;
    border-color: rgba(16, 185, 129, 0.5);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: white;
    background: rgba(15, 23, 42, 0.72);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-control:hover {
    background: rgba(16, 185, 129, 0.82);
    border-color: rgba(16, 185, 129, 0.82);
}

.hero-prev {
    left: max(18px, calc((100vw - 1180px) / 2 - 68px));
}

.hero-next {
    right: max(18px, calc((100vw - 1180px) / 2 - 68px));
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.7);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--accent);
}

.home-search,
.section-block,
.featured-strip,
.filter-panel,
.content-section,
.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.home-search {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 26px;
    align-items: center;
    padding: 44px 0 24px;
}

.home-search h2,
.section-heading h2,
.page-hero h1,
.ranking-hero h1,
.compact-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
}

.home-search p,
.page-hero p,
.ranking-hero p {
    color: var(--soft);
    line-height: 1.9;
}

.quick-search {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
    box-shadow: var(--shadow);
}

.quick-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.42);
    outline: none;
}

.quick-search input {
    min-width: 0;
    border: 0;
    padding: 0 14px;
    background: transparent;
}

.section-block,
.featured-strip,
.filter-panel,
.content-section,
.player-section {
    padding: 56px 0;
}

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

.section-heading a {
    color: #34d399;
    font-weight: 700;
}

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

.category-tile,
.overview-card {
    position: relative;
    min-height: 172px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

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

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.12));
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
}

.category-tile strong,
.overview-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.category-tile em,
.overview-card p {
    display: block;
    margin: 0;
    color: var(--soft);
    font-style: normal;
    line-height: 1.7;
}

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

.all-grid {
    align-items: stretch;
}

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.58);
    box-shadow: 0 16px 38px rgba(2, 6, 23, 0.32);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.54);
    box-shadow: 0 24px 58px rgba(16, 185, 129, 0.12);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.95);
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.82), transparent 55%);
}

.tag-row {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.movie-card-title {
    margin: 0;
    color: white;
    font-size: 1.08rem;
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.movie-card-desc {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-meta {
    margin-top: auto;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.78rem;
}

.featured-strip {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    background: rgba(15, 23, 42, 0.36);
}

.horizontal-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 14px;
}

.horizontal-row .movie-card {
    flex: 0 0 260px;
}

.scroll-actions {
    display: flex;
    gap: 8px;
}

.scroll-actions button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: white;
    background: rgba(15, 23, 42, 0.78);
    cursor: pointer;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.62);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.5);
}

.rank-cover {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
}

.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-text strong,
.rank-text em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-text em {
    margin-top: 6px;
    color: var(--muted);
    font-style: normal;
    font-size: 0.85rem;
}

.rank-score,
.ranking-score {
    color: #34d399;
    font-weight: 900;
}

.page-hero,
.ranking-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 0 0 34px 34px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(16, 185, 129, 0.16));
    box-shadow: var(--shadow);
}

.slim-hero {
    padding: 82px 42px 52px;
}

.filter-panel {
    padding-bottom: 16px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.58);
}

.filter-grid label {
    display: grid;
    gap: 8px;
    color: var(--soft);
    font-size: 0.88rem;
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 14px;
}

.overview-card {
    min-height: auto;
    padding: 18px;
}

.overview-covers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.overview-covers span {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
    background: rgba(2, 6, 23, 0.5);
}

.overview-covers img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: center;
    padding: 42px;
}

.ranking-hero > img {
    height: 420px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 58px 78px minmax(0, 1fr) 58px;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.62);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-card:hover {
    transform: translateX(4px);
    border-color: rgba(16, 185, 129, 0.52);
}

.ranking-number {
    color: #34d399;
    font-size: 1.15rem;
    font-weight: 900;
    text-align: center;
}

.ranking-card img {
    width: 78px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-info strong,
.ranking-info em,
.ranking-info small {
    display: block;
}

.ranking-info strong {
    font-size: 1.05rem;
}

.ranking-info em {
    margin: 6px 0;
    color: var(--soft);
    font-style: normal;
    line-height: 1.6;
}

.ranking-info small {
    color: #64748b;
}

.detail-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

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

.detail-bg {
    filter: blur(2px) saturate(1.08);
    transform: scale(1.02);
}

.detail-layer {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.97), rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.26)),
        linear-gradient(to top, rgba(2, 6, 23, 1), transparent 55%);
}

.detail-wrap {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0 34px;
    color: var(--soft);
    font-size: 0.92rem;
}

.breadcrumb a {
    color: #34d399;
}

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

.detail-poster {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-line {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--soft);
    font-size: 1.15rem;
    line-height: 1.9;
}

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

.detail-tags {
    margin-bottom: 30px;
}

.player-section {
    padding-top: 24px;
}

.compact-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: black;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player {
    display: block;
    width: 100%;
    height: 100%;
    background: black;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: white;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.2));
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.play-circle {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.34);
    font-size: 1.6rem;
    padding-left: 5px;
}

.content-section {
    padding-top: 20px;
}

.prose-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: var(--shadow);
}

.prose-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
}

.prose-card h2:not(:first-child) {
    margin-top: 30px;
}

.prose-card p {
    margin: 0;
    color: var(--soft);
    line-height: 2;
    font-size: 1.02rem;
}

.site-footer {
    margin-top: 56px;
    border-top: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.72);
}

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

.footer-grid h2 {
    margin: 0 0 16px;
    font-size: 1.08rem;
}

.footer-grid p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    color: var(--muted);
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 34px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #64748b;
    text-align: center;
}

.searchable-card.is-hidden,
.ranking-card.is-hidden {
    display: none;
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .home-search,
    .ranking-hero,
    .detail-main,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .hero-carousel,
    .hero-content {
        min-height: 560px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 86px;
    }

    .hero-control {
        display: none;
    }

    .quick-search,
    .filter-grid {
        border-radius: 22px;
        flex-direction: column;
    }

    .quick-search {
        display: grid;
    }

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

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

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

    .ranking-card {
        grid-template-columns: 42px 64px minmax(0, 1fr);
    }

    .ranking-score {
        display: none;
    }

    .detail-main {
        gap: 24px;
    }

    .detail-poster {
        width: min(280px, 100%);
    }

    .slim-hero,
    .ranking-hero,
    .prose-card {
        padding: 28px;
    }
}

@media (max-width: 520px) {
    .nav-shell {
        width: min(100% - 22px, 1180px);
    }

    .brand-text {
        font-size: 1rem;
    }

    .hero-content,
    .home-search,
    .section-block,
    .filter-panel,
    .content-section,
    .player-section,
    .page-hero,
    .ranking-hero,
    .detail-wrap,
    .footer-grid,
    .copyright {
        width: min(100% - 22px, 1180px);
    }

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

    .horizontal-row .movie-card {
        flex-basis: 78vw;
    }

    .mobile-nav {
        grid-template-columns: 1fr;
    }
}
