:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.86);
    --bg-card-strong: #111827;
    --line: rgba(245, 158, 11, 0.22);
    --line-soft: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --orange: #ea580c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.12), transparent 26rem),
        radial-gradient(circle at 80% 10%, rgba(234, 88, 12, 0.12), transparent 24rem),
        var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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 var(--line);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 168px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
    color: #ffffff;
    font-size: 16px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong,
.footer-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

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

.desktop-nav a {
    color: #cbd5e1;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fbbf24;
}

.header-search,
.mobile-search,
.category-search,
.search-panel {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.72);
    border-radius: 999px;
}

.header-search input,
.mobile-search input,
.category-search input,
.search-panel input {
    width: 210px;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text);
}

.header-search button,
.mobile-search button,
.category-search button,
.search-panel button {
    align-self: stretch;
    border: 0;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 8px;
}

.mobile-menu-button span {
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: #e2e8f0;
}

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

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

.mobile-panel nav,
.mobile-category-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.mobile-panel nav a,
.mobile-category-links a {
    padding: 12px 14px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.76);
    color: #dbeafe;
}

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

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    min-height: 620px;
    padding: 34px 0 18px;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #0f172a;
    min-height: 560px;
    box-shadow: var(--shadow);
}

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

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 44%, rgba(2, 6, 23, 0.14) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent 55%);
}

.hero-content {
    position: absolute;
    left: 46px;
    right: 42px;
    bottom: 58px;
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.hero-side-card p,
.detail-copy .lead {
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 17px;
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fcd34d;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-link,
.ghost-wide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.24);
}

.ghost-button,
.ghost-wide {
    border: 1px solid rgba(245, 158, 11, 0.34);
    background: rgba(15, 23, 42, 0.68);
    color: #fcd34d;
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover,
.ghost-wide:hover {
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.76);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    border: 0;
}

.hero-dots button.is-active {
    width: 28px;
    background: #fbbf24;
}

.hero-side-card,
.page-hero,
.section-block,
.rank-panel,
.filter-panel,
.search-results-panel,
.content-card,
.category-overview-card {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.82));
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.hero-side-card {
    padding: 30px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-side-card > span {
    color: #fbbf24;
    font-weight: 800;
}

.hero-side-card h1 {
    margin: 16px 0 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.quick-links a {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.1);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.section-block,
.rank-panel,
.search-results-panel {
    margin: 24px 0;
    padding: 26px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.section-heading a,
.text-link {
    color: #fbbf24;
    font-weight: 800;
}

.section-heading.slim {
    margin-bottom: 18px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.74);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.36);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 42%);
    opacity: 0.88;
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.year-badge,
.rank-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: 10px;
    right: auto;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

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

.movie-meta-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--muted-2);
    font-size: 12px;
}

.movie-meta-line a {
    color: #fbbf24;
    font-weight: 750;
}

.movie-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-card p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 24px;
    align-items: start;
}

.compact-section,
.rank-panel {
    margin-top: 0;
}

.rank-panel {
    position: sticky;
    top: 100px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 34px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.rank-item span {
    color: #fbbf24;
    font-weight: 900;
}

.rank-item img {
    width: 54px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-item strong {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-item em {
    color: var(--muted-2);
    font-style: normal;
    font-size: 12px;
}

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

.category-card {
    min-height: 150px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.16);
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.16), transparent 12rem),
        rgba(15, 23, 42, 0.7);
}

.category-card span {
    color: #ffffff;
    font-size: 21px;
    font-weight: 850;
}

.category-card p,
.category-overview-card p,
.site-footer p {
    color: var(--muted);
}

.page-hero {
    margin: 34px 0 24px;
    padding: clamp(30px, 6vw, 58px);
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(245, 158, 11, 0.18), transparent 20rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.88));
}

.page-hero p {
    max-width: 740px;
}

.category-search,
.search-panel {
    margin-top: 26px;
    max-width: 640px;
}

.search-panel input {
    flex: 1;
    width: auto;
}

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

.category-overview-card {
    overflow: hidden;
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    min-height: 180px;
    background: #111827;
}

.category-cover-row img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.category-overview-card > div {
    padding: 22px;
}

.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

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

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

.search-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.filter-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
}

.filter-panel h2 {
    margin: 0 0 20px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-weight: 700;
}

.filter-panel select,
.filter-panel input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.72);
    outline: 0;
}

.ghost-wide {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.pagination button,
.pagination span {
    min-width: 42px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.78);
    color: #ffffff;
}

.pagination button.is-active {
    background: linear-gradient(135deg, var(--amber), var(--orange));
    border-color: transparent;
}

.detail-hero {
    position: relative;
    min-height: 600px;
    margin: 0 calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
    padding: 34px calc((100vw - min(1180px, calc(100vw - 32px))) / 2) 42px;
    overflow: hidden;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.22;
    filter: blur(2px);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.76)),
        linear-gradient(0deg, var(--bg), transparent 58%);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 28px;
    color: var(--muted);
}

.breadcrumb a {
    color: #fbbf24;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

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

.detail-copy {
    max-width: 780px;
}

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

.detail-meta span {
    padding: 9px 13px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #dbeafe;
}

.watch-section {
    margin: -26px 0 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18), rgba(2, 6, 23, 0.58));
    cursor: pointer;
}

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

.big-play {
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 20px 55px rgba(245, 158, 11, 0.34);
    cursor: pointer;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.content-card {
    padding: 26px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.content-card p {
    margin: 0;
    color: #cbd5e1;
}

.related-section {
    margin-top: 24px;
}

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

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

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

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.72);
}

@media (max-width: 1120px) {
    .header-search {
        display: none;
    }

    .hero-shell,
    .split-section,
    .search-layout {
        grid-template-columns: 1fr;
    }

    .hero-side-card,
    .rank-panel,
    .filter-panel {
        position: static;
    }

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

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

@media (max-width: 820px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .header-inner {
        min-height: 68px;
    }

    .hero-shell {
        min-height: auto;
        padding-top: 20px;
    }

    .hero-stage {
        min-height: 520px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 72px;
    }

    .hero-controls {
        left: 22px;
        right: 22px;
        justify-content: center;
    }

    .hero-gradient {
        background: linear-gradient(0deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.52));
    }

    .movie-grid,
    .small-grid,
    .category-grid,
    .category-overview-grid,
    .category-movie-grid,
    .ranking-grid,
    .detail-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-poster {
        width: min(280px, 78vw);
    }

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

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

@media (max-width: 560px) {
    main,
    .header-inner,
    .mobile-panel,
    .footer-inner,
    .detail-wrap {
        width: min(100% - 22px, 1180px);
    }

    .brand-copy strong,
    .footer-brand {
        font-size: 19px;
    }

    .hero-stage {
        min-height: 500px;
        border-radius: 22px;
    }

    .hero-side-card,
    .page-hero,
    .section-block,
    .rank-panel,
    .filter-panel,
    .search-results-panel,
    .content-card {
        padding: 20px;
        border-radius: 18px;
    }

    .movie-grid,
    .small-grid,
    .category-grid,
    .category-overview-grid,
    .category-movie-grid,
    .ranking-grid,
    .detail-content {
        grid-template-columns: 1fr;
    }

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

    .category-cover-row {
        min-height: 130px;
    }

    .category-cover-row img {
        min-height: 130px;
    }

    .detail-hero {
        min-height: auto;
        padding-top: 18px;
    }

    .big-play {
        width: 76px;
        height: 76px;
        font-size: 28px;
    }
}
