:root {
    color-scheme: dark;
    --bg: #07111f;
    --bg-deep: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(96, 165, 250, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --orange: #f97316;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(37, 99, 235, 0.28), transparent 32rem),
        radial-gradient(circle at 82% 10%, rgba(6, 182, 212, 0.18), transparent 24rem),
        linear-gradient(135deg, var(--bg-deep), #0f172a 48%, var(--bg));
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    color: #fff;
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.22);
}

.brand-text {
    font-size: 1.15rem;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link,
.mobile-link {
    color: #dbeafe;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 9px 14px;
    font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #fff;
    background: rgba(96, 165, 250, 0.18);
}

.top-search,
.mobile-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.28);
    background: rgba(15, 23, 42, 0.72);
    border-radius: 999px;
}

.top-search input,
.mobile-search input {
    width: 220px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding: 10px 14px;
}

.top-search button,
.mobile-search button,
.filter-panel button {
    border: 0;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    padding: 10px 16px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #fff;
    background: rgba(15, 23, 42, 0.66);
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    gap: 10px;
    flex-direction: column;
}

.mobile-nav.open {
    display: flex;
}

.mobile-link {
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.65);
}

.hero-slider {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 28%, rgba(37, 99, 235, 0.18), transparent 26rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.22)),
        linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.58) 42%, transparent 72%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 82px;
    max-width: 1280px;
}

.eyebrow,
.hero-site-title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    padding: 7px 14px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-site-title {
    background: rgba(2, 6, 23, 0.58);
    border: 1px solid rgba(125, 211, 252, 0.34);
    margin-bottom: 12px;
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    line-height: 0.98;
    font-weight: 900;
    text-shadow: 0 16px 50px rgba(0, 0, 0, 0.56);
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.8;
}

.hero-meta,
.detail-meta,
.card-meta,
.wide-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.hero-meta {
    margin-bottom: 26px;
}

.hero-meta span,
.detail-meta span,
.card-meta span {
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.58);
    border-radius: 999px;
    padding: 5px 10px;
}

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

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.secondary-btn {
    color: #dbeafe;
    border: 1px solid rgba(125, 211, 252, 0.36);
    background: rgba(15, 23, 42, 0.58);
}

.primary-btn:hover,
.secondary-btn:hover,
.movie-card:hover,
.category-card:hover,
.wide-card:hover {
    transform: translateY(-3px) scale(1.01);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(2, 6, 23, 0.58);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 32px;
    background: #fff;
}

.content-section {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 900;
}

.section-more {
    color: #60a5fa;
    font-weight: 700;
}

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

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

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

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(96, 165, 250, 0.44);
    background: rgba(15, 23, 42, 0.94);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.12));
}

.play-symbol {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.movie-card:hover .play-symbol {
    opacity: 1;
}

.score-pill,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
}

.score-pill {
    top: 12px;
    right: 12px;
    background: rgba(2, 6, 23, 0.76);
    padding: 6px 10px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), #facc15);
}

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

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.movie-tags span,
.detail-tags span {
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.2);
    padding: 4px 9px;
    font-size: 0.78rem;
}

.movie-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: #60a5fa;
}

.movie-card p {
    min-height: 3.2em;
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.62;
    font-size: 0.92rem;
}

.card-meta {
    font-size: 0.78rem;
}

.glass-section {
    width: min(1280px, calc(100% - 32px));
    margin-top: 20px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.26), rgba(8, 145, 178, 0.16));
    box-shadow: var(--shadow);
    padding: 34px;
}

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

.wide-card {
    display: grid;
    grid-template-columns: auto 180px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.66);
    padding: 14px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wide-card:hover {
    background: rgba(15, 23, 42, 0.94);
    border-color: rgba(96, 165, 250, 0.38);
}

.rank-num {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 1.3rem;
    font-weight: 900;
}

.wide-cover {
    position: relative;
    height: 104px;
    overflow: hidden;
    border-radius: 14px;
}

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

.wide-cover span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(2, 6, 23, 0.28);
    font-size: 1.8rem;
}

.wide-info {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.wide-info strong {
    color: #fff;
    font-size: 1.08rem;
}

.wide-info em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.55;
}

.wide-meta {
    font-size: 0.86rem;
}

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

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

.category-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.35));
}

.category-card-body {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 9px;
}

.category-card-body strong {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-card-body em,
.category-card-body small {
    color: #cbd5e1;
    font-style: normal;
    line-height: 1.55;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 16% 20%, rgba(37, 99, 235, 0.32), transparent 24rem),
        linear-gradient(120deg, rgba(30, 64, 175, 0.42), rgba(8, 145, 178, 0.18));
}

.slim-hero {
    padding: 76px 0 54px;
}

.page-hero-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    font-weight: 900;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #dbeafe;
    line-height: 1.8;
    font-size: 1.08rem;
}

.filter-panel {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-panel input {
    flex: 1;
    min-height: 48px;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 999px;
    outline: 0;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    padding: 0 18px;
}

.filter-panel button {
    border-radius: 999px;
    padding: 0 22px;
}

.empty-result {
    display: none;
    color: var(--muted);
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.62);
    padding: 18px;
    margin: 0 0 18px;
}

.empty-result.show {
    display: block;
}

.rank-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.rank-tab {
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.72);
    padding: 12px 20px;
    cursor: pointer;
}

.rank-tab.active {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    opacity: 0.62;
    transform: scale(1.04);
}

.detail-backdrop-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.74) 48%, rgba(2, 6, 23, 0.46)),
        linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.18) 55%, transparent 100%);
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
    color: #bfdbfe;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

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

.detail-score {
    position: absolute;
    left: 16px;
    bottom: 16px;
    border-radius: 999px;
    color: #fff;
    background: rgba(2, 6, 23, 0.76);
    padding: 8px 12px;
    font-weight: 900;
}

.detail-copy h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 900;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 20px;
    color: #dbeafe;
    font-size: 1.16rem;
    line-height: 1.8;
}

.detail-tags {
    margin: 18px 0 24px;
}

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

.player-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.16), rgba(2, 6, 23, 0.34));
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.play-cover span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 46px rgba(37, 99, 235, 0.34);
    font-size: 2.4rem;
    padding-left: 5px;
}

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

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

.text-panel {
    border: 1px solid rgba(125, 211, 252, 0.13);
    border-radius: 22px;
    background: var(--panel);
    padding: 24px;
}

.text-panel h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

.text-panel p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
}

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

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

.footer-brand p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.8;
    margin: 16px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px 16px;
}

.footer-links a {
    color: #cbd5e1;
}

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

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

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

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

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

@media (max-width: 820px) {
    .hero-slider {
        height: 560px;
    }

    .hero-arrow {
        display: none;
    }

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

    .wide-card {
        grid-template-columns: auto 112px minmax(0, 1fr);
    }

    .wide-cover {
        height: 82px;
    }

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

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

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

@media (max-width: 560px) {
    .header-inner {
        width: min(100% - 24px, 1280px);
    }

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

    .hero-slider {
        height: 520px;
    }

    .hero-content {
        padding-bottom: 70px;
    }

    .hero-actions,
    .filter-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .content-section,
    .glass-section,
    .detail-inner,
    .page-hero-inner,
    .footer-inner {
        width: min(100% - 24px, 1280px);
    }

    .glass-section {
        padding: 22px;
    }

    .movie-grid,
    .feature-grid,
    .compact-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-rail {
        grid-auto-columns: minmax(250px, 86vw);
    }

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

    .wide-cover {
        display: none;
    }

    .player-frame {
        border-radius: 18px;
    }

    .play-cover span {
        width: 68px;
        height: 68px;
        font-size: 2rem;
    }
}
