:root {
    --color-bg: #020617;
    --color-panel: rgba(15, 23, 42, 0.78);
    --color-panel-strong: rgba(30, 41, 59, 0.92);
    --color-border: #1e293b;
    --color-border-soft: rgba(45, 212, 191, 0.18);
    --color-text: #f8fafc;
    --color-muted: #94a3b8;
    --color-soft: #cbd5e1;
    --color-primary: #14b8a6;
    --color-primary-strong: #0f766e;
    --color-primary-soft: rgba(20, 184, 166, 0.18);
    --shadow-card: 0 24px 60px rgba(2, 6, 23, 0.42);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.15), transparent 36rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(18px);
}

.site-header-inner,
.container {
    width: min(100% - 2rem, 80rem);
    margin: 0 auto;
}

.site-header-inner {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-logo {
    font-size: 1.18rem;
}

.site-logo:hover {
    color: #5eead4;
}

.site-logo-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #001b18;
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
    box-shadow: 0 0 28px rgba(20, 184, 166, 0.48);
    font-size: 0.9rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link,
.mobile-menu-link {
    color: #cbd5e1;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-menu-link:hover,
.nav-link.is-active {
    color: #2dd4bf;
}

.menu-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--color-text);
}

.menu-toggle span {
    display: block;
    width: 1.35rem;
    height: 2px;
    margin: 0.27rem auto;
    border-radius: 999px;
    background: #cbd5e1;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--color-border);
    padding: 0.75rem 1rem 1rem;
}

.mobile-menu.is-open {
    display: grid;
    gap: 0.45rem;
}

.mobile-menu-link {
    padding: 0.75rem 0;
}

.page-main {
    padding-top: 4rem;
}

.hero {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background: #020617;
}

.hero-slider,
.hero-slide,
.hero-backdrop {
    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 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-backdrop {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 36%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.08) 38%, rgba(2, 6, 23, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4.5rem 0;
}

.hero-copy {
    max-width: 43rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #2dd4bf;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h1,
.page-title h1,
.detail-title h1 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero h1 {
    max-width: 42rem;
    font-size: clamp(3rem, 8vw, 5.6rem);
}

.hero p {
    margin: 1.35rem 0 0;
    max-width: 42rem;
    color: #cbd5e1;
    font-size: 1.12rem;
    line-height: 1.8;
}

.hero-meta,
.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.hero-meta {
    margin: 1.7rem 0 2rem;
}

.hero-meta span,
.movie-meta span,
.detail-meta span,
.tag-row span,
.breadcrumb a,
.breadcrumb span {
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    font-size: 0.85rem;
}

.hero-meta span:first-child,
.tag-row span:first-child {
    color: #5eead4;
    background: var(--color-primary-soft);
    border-color: rgba(45, 212, 191, 0.28);
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.9rem;
    padding: 0.76rem 1.18rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(20, 184, 166, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--color-primary-strong);
}

.btn-secondary,
.btn-ghost {
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.68);
    border-color: rgba(148, 163, 184, 0.18);
}

.btn-secondary:hover,
.btn-ghost:hover {
    color: #5eead4;
    border-color: rgba(45, 212, 191, 0.38);
}

.hero-search {
    display: flex;
    width: min(100%, 36rem);
    margin-top: 2rem;
    padding: 0.35rem;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
}

.hero-search input,
.page-filter input,
.search-panel input {
    flex: 1;
    min-width: 0;
    color: #ffffff;
    border: 0;
    outline: none;
    background: transparent;
}

.hero-search input {
    padding: 0 1rem;
}

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

.hero-dots button {
    width: 2.15rem;
    height: 0.35rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.45);
}

.hero-dots button.is-active {
    background: #2dd4bf;
}

.section {
    padding: 4.3rem 0 0;
}

.section-header,
.page-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
}

.section-kicker {
    color: #2dd4bf;
    font-weight: 800;
    margin: 0 0 0.45rem;
}

.section-header h2,
.page-title h1,
.detail-title h1 {
    margin: 0;
    color: #ffffff;
}

.section-header h2 {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.section-header p,
.page-title p,
.detail-title p,
.category-card p,
.rank-content p,
.review-card p,
.detail-content p {
    color: var(--color-muted);
    line-height: 1.75;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
}

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.66);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-0.35rem);
    background: rgba(30, 41, 59, 0.86);
    border-color: rgba(45, 212, 191, 0.32);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

.movie-poster img,
.wide-cover img,
.rank-thumb img,
.related-cover img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .movie-poster img,
.wide-card:hover img,
.related-card:hover img,
.rank-row:hover img {
    transform: scale(1.08);
}

.movie-poster::after,
.wide-cover::after,
.related-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 55%);
}

.movie-badge,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-badge {
    left: 0.75rem;
    top: 0.75rem;
    color: #e6fffb;
    background: rgba(20, 184, 166, 0.8);
    border-radius: 999px;
    padding: 0.32rem 0.62rem;
    font-size: 0.76rem;
    font-weight: 800;
}

.movie-play {
    left: 50%;
    top: 50%;
    width: 3.1rem;
    height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(20, 184, 166, 0.9);
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .movie-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
    padding: 1rem;
}

.movie-meta {
    gap: 0.35rem;
    margin-bottom: 0.68rem;
}

.movie-meta span {
    padding: 0;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 0.78rem;
}

.movie-card h2,
.rank-content h2,
.review-card h2,
.related-card h2,
.category-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.38;
}

.movie-card h2 a:hover,
.rank-content h2 a:hover,
.review-card h2 a:hover,
.related-card h2 a:hover,
.category-card h2 a:hover {
    color: #5eead4;
}

.movie-card p {
    min-height: 3.35rem;
    margin: 0.58rem 0 0;
    color: var(--color-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.85rem;
}

.tag-row span {
    padding: 0.24rem 0.5rem;
    font-size: 0.73rem;
}

.horizontal-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0 1rem;
    scrollbar-width: none;
}

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

.wide-card {
    flex: 0 0 min(22rem, 84vw);
    display: grid;
    grid-template-columns: 8.5rem 1fr;
    gap: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.64);
    transition: transform 0.22s ease, background 0.22s ease;
}

.wide-card:hover {
    transform: translateY(-0.25rem);
    background: rgba(30, 41, 59, 0.86);
}

.wide-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #0f172a;
}

.wide-cover span {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}

.wide-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wide-info strong {
    color: #ffffff;
    line-height: 1.35;
}

.wide-info em,
.wide-info small {
    color: #94a3b8;
    font-style: normal;
    line-height: 1.5;
}

.review-list {
    display: grid;
    gap: 1rem;
}

.review-card {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 1.3rem;
    padding: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.66);
}

.review-card .wide-cover {
    aspect-ratio: 16 / 9;
}

.review-card h2 {
    font-size: 1.28rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.feature-tile {
    position: relative;
    min-height: 15rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #0f172a;
}

.feature-tile:first-child {
    grid-column: span 2;
}

.feature-tile img {
    width: 100%;
    height: 100%;
    min-height: 15rem;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

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

.feature-tile-content {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
}

.feature-tile h2 {
    margin: 0.45rem 0 0;
    color: #ffffff;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.category-chip {
    display: inline-flex;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font-weight: 700;
}

.category-chip:hover {
    color: #5eead4;
    border-color: rgba(45, 212, 191, 0.34);
}

.page-title {
    padding: 7.5rem 0 1rem;
}

.page-title h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}

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

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 13rem;
    padding: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(20, 184, 166, 0.1), transparent 42%),
        rgba(15, 23, 42, 0.68);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(45, 212, 191, 0.36);
}

.page-filter,
.search-panel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.3rem 0 2rem;
    padding: 0.7rem;
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.72);
}

.page-filter input,
.search-panel input {
    min-height: 2.8rem;
    padding: 0 0.75rem;
}

.rank-list {
    display: grid;
    gap: 0.85rem;
}

.rank-row {
    display: grid;
    grid-template-columns: 4rem 6rem 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.66);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(0.25rem);
    background: rgba(30, 41, 59, 0.86);
}

.rank-num {
    color: #5eead4;
    font-size: 1.65rem;
    font-weight: 900;
    text-align: center;
}

.rank-thumb {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    background: #0f172a;
}

.detail-shell {
    padding: 7rem 0 4.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.breadcrumb a:hover {
    color: #5eead4;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 2rem;
    align-items: start;
}

.detail-title {
    margin-bottom: 1.5rem;
}

.detail-title h1 {
    font-size: clamp(2.2rem, 5vw, 4.25rem);
}

.detail-title p {
    max-width: 52rem;
    margin: 1rem 0 0;
    font-size: 1.06rem;
}

.detail-meta {
    margin-top: 1rem;
}

.player-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(45, 212, 191, 0.24);
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow-card);
}

.player-frame video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.42);
    cursor: pointer;
}

.player-cover img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 20rem),
        linear-gradient(0deg, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.36));
}

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

.play-button {
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.95);
    box-shadow: 0 18px 44px rgba(20, 184, 166, 0.34);
    font-size: 2rem;
    transform: translateZ(0);
}

.detail-content {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.5rem;
}

.detail-panel,
.detail-poster,
.related-panel {
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.66);
    box-shadow: var(--shadow-card);
}

.detail-panel {
    padding: 1.3rem;
}

.detail-panel h2,
.related-panel h2 {
    margin: 0 0 0.75rem;
    color: #ffffff;
}

.detail-poster {
    overflow: hidden;
}

.detail-poster img {
    aspect-ratio: 3 / 4;
}

.related-panel {
    padding: 1.05rem;
}

.related-list {
    display: grid;
    gap: 0.85rem;
}

.related-card {
    display: grid;
    grid-template-columns: 5.2rem 1fr;
    gap: 0.8rem;
    align-items: center;
}

.related-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    background: #0f172a;
}

.related-card h2 {
    font-size: 0.96rem;
}

.related-card p {
    margin: 0.35rem 0 0;
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.5;
}

.search-results {
    min-height: 18rem;
}

.empty-state {
    padding: 3rem 1rem;
    color: #94a3b8;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.66);
}

.site-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--color-border);
    background: rgba(15, 23, 42, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-logo {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.site-footer p {
    max-width: 28rem;
    margin: 0;
    color: #94a3b8;
    line-height: 1.75;
}

.site-footer h2 {
    margin: 0 0 0.9rem;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a {
    color: #94a3b8;
}

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

.footer-bottom {
    width: min(100% - 2rem, 80rem);
    margin: 0 auto;
    padding: 1.25rem 0;
    color: #64748b;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.9rem;
}

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

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

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

    .detail-sidebar {
        display: grid;
        grid-template-columns: 18rem 1fr;
        gap: 1rem;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .site-logo {
        font-size: 1rem;
    }

    .hero,
    .hero-content {
        min-height: 78vh;
    }

    .hero-search {
        display: grid;
        gap: 0.5rem;
    }

    .hero-search input {
        min-height: 2.7rem;
    }

    .section-header,
    .page-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .category-overview,
    .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-tile:first-child {
        grid-column: auto;
    }

    .review-card {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 3.2rem 4.8rem 1fr;
        gap: 0.75rem;
    }

    .rank-num {
        font-size: 1.25rem;
    }

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

@media (max-width: 520px) {
    .site-header-inner,
    .container {
        width: min(100% - 1rem, 80rem);
    }

    .hero h1 {
        font-size: 2.75rem;
    }

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

    .wide-card {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 2.7rem 4rem 1fr;
        padding: 0.62rem;
    }
}
