:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f1f5f9;
    --brand: #059669;
    --brand-dark: #047857;
    --brand-soft: #d1fae5;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f8fafc 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button, input {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 18px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(14px);
}

.site-nav {
    position: relative;
    width: min(1200px, 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: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), #065f46);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.28);
    transition: transform 0.2s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.05);
}

.brand-text, .footer-brand span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong, .footer-brand strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}

.brand-text small, .footer-brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link, .mobile-link {
    color: #334155;
    font-weight: 650;
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
}

.nav-link:hover, .nav-link.is-active {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--soft);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: #334155;
}

.mobile-menu {
    display: none;
}

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

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(5, 150, 105, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.70) 42%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.72));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    color: #fff;
}

.hero-content > * {
    max-width: 720px;
}

.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.section-kicker {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.hero h1, .page-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p, .page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-tags, .meta-list, .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span {
    padding: 7px 12px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

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

.primary-btn, .ghost-btn, .pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.primary-btn {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 14px 28px rgba(5, 150, 105, 0.28);
}

.primary-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px) scale(1.02);
}

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.ghost-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.20);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 34px;
    backdrop-filter: blur(12px);
    transition: background 0.18s ease, transform 0.18s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 26px;
    transform: translateY(-50%);
}

.hero-next {
    right: 26px;
    transform: translateY(-50%);
}

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

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

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

.page-space {
    padding: 54px 0 76px;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 22px;
    align-items: center;
    margin-bottom: 34px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.search-panel h2 {
    margin: 0 0 6px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.search-panel p {
    margin: 0;
    color: var(--muted);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.search-box span {
    color: var(--brand-dark);
    font-weight: 800;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.section-block, .rank-panel, .detail-card, .side-card {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.section-block {
    padding: 28px;
    margin-bottom: 42px;
}

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

.section-head h2 {
    margin: 10px 0 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.06em;
}

.section-head a {
    flex-shrink: 0;
    color: var(--brand-dark);
    font-weight: 800;
}

.slim-head h2 {
    font-size: 24px;
}

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

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

.category-card a {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 10%, rgba(5, 150, 105, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-card a:hover {
    border-color: rgba(5, 150, 105, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.category-card span {
    color: var(--brand-dark);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.category-card strong {
    margin-top: 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.category-card em {
    margin-top: 18px;
    color: var(--brand-dark);
    font-style: normal;
    font-weight: 800;
}

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

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

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

.movie-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 16px;
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card-link:hover {
    border-color: rgba(5, 150, 105, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--soft);
}

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

.movie-card-link:hover img, .rank-row a:hover img, .horizontal-link:hover img {
    transform: scale(1.08);
}

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.78) 100%);
}

.poster-badge, .poster-meta {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.poster-badge {
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--brand);
}

.poster-meta {
    left: 12px;
    right: 12px;
    bottom: 10px;
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
}

.card-body strong {
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    transition: color 0.18s ease;
}

.movie-card-link:hover strong {
    color: var(--brand-dark);
}

.card-body em, .horizontal-info em, .rank-info em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 28px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
}

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

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

.rank-row a, .horizontal-link {
    display: flex;
    gap: 14px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 14px;
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rank-row a:hover, .horizontal-link:hover {
    border-color: rgba(5, 150, 105, 0.28);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.rank-cover, .horizontal-cover {
    flex-shrink: 0;
    width: 112px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
}

.horizontal-cover {
    width: 156px;
}

.rank-info, .horizontal-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 12px 12px 12px 0;
}

.rank-info strong, .horizontal-info strong {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rank-info small, .horizontal-info small {
    color: #94a3b8;
    font-size: 12px;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.32), transparent 32%),
        linear-gradient(135deg, #020617, #064e3b 55%, #020617);
}

.page-hero.category-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.45)), var(--hero-image);
    background-position: center;
    background-size: cover;
    opacity: 0.76;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 760px;
}

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

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

.category-hero .primary-btn {
    margin-top: 28px;
}

.ranking-hero, .search-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.34), transparent 28%),
        linear-gradient(135deg, #020617, #064e3b 52%, #0f172a);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 26px 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--brand-dark);
    font-weight: 750;
}

.detail-container {
    padding-bottom: 76px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.player-shell {
    overflow: hidden;
    border-radius: 20px;
    background: #020617;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.24);
}

.video-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: #000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(5, 150, 105, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.72));
}

.play-circle {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: 31px;
    box-shadow: 0 20px 42px rgba(5, 150, 105, 0.38);
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-cover:hover .play-circle {
    transform: scale(1.08);
    background: var(--brand-dark);
}

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

.detail-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-title-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.detail-title-row h1 {
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.06em;
}

.pill-link {
    min-height: 38px;
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.meta-list {
    margin-top: 22px;
}

.meta-list span, .tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.meta-list span {
    color: #334155;
    background: var(--soft);
}

.tag-list {
    margin-top: 16px;
}

.tag-list span {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.detail-text-box {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.detail-text-box h2, .side-card h2, .footer-col h2 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.detail-text-box p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.detail-side {
    position: sticky;
    top: 92px;
}

.side-card {
    padding: 22px;
}

.side-list {
    grid-template-columns: 1fr;
}

.side-list .horizontal-cover {
    width: 128px;
}

.empty-state {
    margin: 28px 0 0;
    padding: 22px;
    border-radius: 16px;
    color: var(--muted);
    text-align: center;
    background: var(--soft);
}

.site-footer {
    margin-top: auto;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.4fr) minmax(160px, 0.4fr);
    gap: 42px;
}

.footer-brand strong {
    color: #fff;
}

.footer-main p {
    max-width: 560px;
    margin: 18px 0 0;
    color: #94a3b8;
}

.footer-col h2 {
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-links a:hover {
    color: #6ee7b7;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

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

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

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

    .rank-panel, .detail-side {
        position: static;
    }
}

@media (max-width: 820px) {
    .site-nav {
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 0 0 18px 18px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .mobile-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-link {
        padding: 11px 12px;
        border-radius: 12px;
    }

    .mobile-link:hover, .mobile-link.is-active {
        color: var(--brand-dark);
        background: var(--brand-soft);
    }

    .hero {
        min-height: 560px;
        height: 76vh;
    }

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

    .hero-arrow {
        top: auto;
        bottom: 28px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .hero-prev {
        left: 20px;
        transform: none;
    }

    .hero-next {
        right: 20px;
        transform: none;
    }

    .hero-arrow:hover {
        transform: scale(1.04);
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

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

    .category-grid, .large-category-grid, .horizontal-grid, .wide-rank-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .container, .site-nav, .footer-inner, .hero-content {
        width: min(100% - 24px, 1200px);
    }

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

    .brand-text strong {
        font-size: 17px;
    }

    .hero h1, .page-hero h1 {
        font-size: 36px;
    }

    .hero p, .page-hero p {
        font-size: 16px;
    }

    .hero-tags span {
        font-size: 13px;
    }

    .section-block, .rank-panel, .detail-card, .side-card, .search-panel {
        padding: 18px;
        border-radius: 16px;
    }

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

    .movie-grid, .full-grid, .compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .card-body {
        padding: 12px;
    }

    .horizontal-link, .rank-row a {
        gap: 10px;
    }

    .horizontal-cover, .rank-cover, .side-list .horizontal-cover {
        width: 112px;
    }

    .detail-title-row {
        flex-direction: column;
    }

    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
}
