* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #1f2937;
    background: linear-gradient(180deg, #fff7ed 0%, #f9fafb 24%, #ffffff 100%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(251, 146, 60, 0.16);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(124, 45, 18, 0.08);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f43f5e, #f59e0b);
    box-shadow: 0 14px 30px rgba(244, 63, 94, 0.34);
}

.brand-text,
.footer-brand {
    font-size: 1.38rem;
    background: linear-gradient(90deg, #ea580c, #e11d48, #d97706);
    -webkit-background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #4b5563;
    font-weight: 700;
}

.nav-links a {
    position: relative;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #f97316, #f43f5e);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ea580c;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: #9a3412;
    background: #ffedd5;
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(124, 45, 18, 0.10);
}

.mobile-nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: #4b5563;
    font-weight: 700;
}

.mobile-nav a:hover {
    color: #ea580c;
    background: #fff7ed;
}

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

main {
    overflow: hidden;
}

.hero-section {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
}

.hero-slider {
    position: relative;
    height: 620px;
    overflow: hidden;
    border-radius: 34px;
    background: #111827;
    box-shadow: 0 32px 90px rgba(88, 28, 12, 0.24);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.65s ease, transform 0.9s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(251, 146, 60, 0.36), transparent 35%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.72) 48%, rgba(17, 24, 39, 0.26) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.12) 62%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(640px, 88%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 12px;
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.08em;
}

.hero-summary {
    max-width: 620px;
    margin: 22px 0 0;
    color: #e5e7eb;
    font-size: 1.18rem;
    line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-tags span {
    padding: 9px 13px;
    color: #ffedd5;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

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

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

.primary-button,
.home-search button {
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    box-shadow: 0 18px 40px rgba(244, 63, 94, 0.32);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover,
.home-search button:hover {
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 1.7rem;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px !important;
    height: 9px !important;
    padding: 0;
    background: rgba(255, 255, 255, 0.42) !important;
}

.hero-dot.active {
    width: 30px !important;
    background: #ffffff !important;
}

.hero-side {
    padding: 26px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(124, 45, 18, 0.13);
}

.hero-side h2 {
    margin: 0 0 18px;
    font-size: 1.9rem;
    letter-spacing: -0.05em;
}

.section-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 54px;
}

.soft-panel {
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    box-shadow: 0 24px 64px rgba(124, 45, 18, 0.08);
}

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

.section-heading.no-margin {
    margin-bottom: 16px;
}

.section-heading h2,
.quick-search h2,
.detail-copy h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.section-link {
    color: #ea580c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(124, 45, 18, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(124, 45, 18, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #7f1d1d);
}

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

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.play-chip {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.94), rgba(244, 63, 94, 0.94));
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(17, 24, 39, 0.78);
}

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

.movie-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    color: #9a3412;
    font-size: 0.78rem;
    font-weight: 900;
}

.movie-card h3 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover {
    color: #ea580c;
}

.movie-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row {
    margin-top: 13px;
}

.tag-row span {
    padding: 5px 9px;
    color: #9f1239;
    background: #fff1f2;
    font-size: 0.72rem;
}

.quick-search {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 22px;
    align-items: center;
    padding: 32px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(124, 45, 18, 0.10);
}

.home-search,
.search-box {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #fed7aa;
}

.home-search input,
.search-box input {
    width: 100%;
    min-height: 46px;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: #111827;
    background: transparent;
}

.quick-categories {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-categories a,
.category-samples span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 13px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 0.84rem;
    font-weight: 800;
}

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

.category-tile,
.category-overview-card a {
    display: block;
    height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: 0 16px 42px rgba(124, 45, 18, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(124, 45, 18, 0.15);
}

.category-tile span,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: #111827;
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.category-tile p,
.category-overview-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.94rem;
    line-height: 1.72;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.page-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 44px;
    padding: clamp(42px, 8vw, 88px);
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 16%, rgba(253, 186, 116, 0.52), transparent 30%),
        linear-gradient(135deg, #111827 0%, #7f1d1d 54%, #fb923c 100%);
    box-shadow: 0 30px 90px rgba(88, 28, 12, 0.22);
}

.compact-hero h1,
.ranking-hero h1 {
    max-width: 820px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 20px 0 0;
    color: #ffedd5;
    font-size: 1.12rem;
    line-height: 1.8;
}

.filter-panel {
    margin-bottom: 26px;
    padding: 22px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(124, 45, 18, 0.09);
}

.search-box {
    max-width: 620px;
    margin-bottom: 14px;
}

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

.filter-button {
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    color: #4b5563;
    background: #f3f4f6;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    transform: translateY(-1px);
}

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

.horizontal-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(124, 45, 18, 0.09);
}

.horizontal-poster {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background: #111827;
}

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

.horizontal-body h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 1rem;
    line-height: 1.38;
}

.horizontal-body p:not(.eyebrow) {
    margin: 0;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.55;
}

.rank-number {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    font-size: 0.78rem;
    font-weight: 900;
}

.small-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    color: #9a3412;
    font-size: 0.78rem;
    font-weight: 800;
}

.two-column-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.breadcrumb {
    width: min(1240px, calc(100% - 32px));
    margin: 26px auto 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 0.94rem;
}

.breadcrumb a {
    color: #ea580c;
    font-weight: 800;
}

.detail-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
    border-radius: 36px;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 20%, rgba(251, 146, 60, 0.44), transparent 28%),
        linear-gradient(135deg, #111827, #7f1d1d 58%, #ea580c);
    box-shadow: 0 30px 90px rgba(88, 28, 12, 0.24);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 3 / 4.2;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    background: #111827;
}

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

.detail-info h1 {
    font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.detail-lead {
    max-width: 780px;
    margin: 22px 0 0;
    color: #f9fafb;
    font-size: 1.18rem;
    line-height: 1.9;
}

.detail-tags {
    margin-top: 24px;
}

.detail-tags span {
    padding: 8px 12px;
    color: #ffedd5;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
}

.detail-stats span {
    padding: 10px 14px;
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(17, 24, 39, 0.32);
}

.player-section {
    padding: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 16 / 9;
    background: #000000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #000000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(249, 115, 22, 0.20), transparent 28%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.16));
}

.play-mark {
    position: relative;
    z-index: 2;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    box-shadow: 0 22px 56px rgba(244, 63, 94, 0.45);
    font-size: 2rem;
    text-indent: 4px;
}

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

.detail-copy {
    padding: 34px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(124, 45, 18, 0.10);
}

.detail-copy h2 {
    margin: 0 0 16px;
}

.detail-copy h2 + p {
    margin-top: 0;
}

.detail-copy p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 2.05;
}

.site-footer {
    margin-top: 48px;
    color: #e5e7eb;
    background:
        radial-gradient(circle at 18% 0%, rgba(249, 115, 22, 0.18), transparent 32%),
        linear-gradient(135deg, #111827, #2f1114 58%, #111827);
}

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

.footer-inner p {
    max-width: 560px;
    margin: 12px 0 0;
    color: #d1d5db;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-content: start;
    justify-content: end;
}

.footer-links a {
    color: #fef3c7;
    font-weight: 800;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .hero-section,
    .detail-hero,
    .two-column-panel {
        grid-template-columns: 1fr;
    }

    .hero-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hero-side .eyebrow,
    .hero-side h2 {
        grid-column: 1 / -1;
    }

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

    .detail-hero {
        align-items: start;
    }

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

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .hero-section,
    .section-shell,
    .page-hero,
    .detail-hero,
    .breadcrumb,
    .footer-inner {
        width: min(100% - 24px, 640px);
    }

    .hero-slider {
        height: 560px;
        border-radius: 28px;
    }

    .hero-content {
        width: 100%;
        padding: 34px;
        justify-content: end;
        padding-bottom: 92px;
    }

    .hero-controls {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .hero-side,
    .quick-search,
    .footer-inner,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .quick-search,
    .soft-panel,
    .detail-copy,
    .detail-hero {
        padding: 24px;
        border-radius: 28px;
    }

    .home-search {
        flex-direction: column;
        border-radius: 24px;
    }

    .movie-grid,
    .catalog-grid,
    .compact-grid,
    .ranking-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

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

    .footer-links {
        justify-content: start;
    }
}

@media (max-width: 520px) {
    .brand-text,
    .footer-brand {
        font-size: 1.08rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .hero-slider {
        height: 520px;
    }

    .hero-content {
        padding: 26px;
        padding-bottom: 90px;
    }

    .hero-summary,
    .detail-lead {
        font-size: 1rem;
        line-height: 1.75;
    }

    .movie-grid,
    .catalog-grid,
    .compact-grid,
    .ranking-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

    .player-shell {
        border-radius: 22px;
    }

    .play-mark {
        width: 66px;
        height: 66px;
        font-size: 1.65rem;
    }
}
