:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #8b5cf6;
    --blue: #60a5fa;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fdf2f8;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #fff1f2 0%, #faf5ff 45%, #eff6ff 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #f472b6 0%, #c084fc 52%, #93c5fd 100%);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark,
.footer-logo:hover .logo-mark {
    transform: scale(1.08) rotate(3deg);
}

.logo-text {
    font-size: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
    font-weight: 600;
    flex: 1;
}

.main-nav > a,
.nav-dropdown > button {
    border: 0;
    color: #fff;
    background: transparent;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown > button:hover {
    color: #fff7fb;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 190px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: #4b5563;
    font-size: 14px;
}

.nav-dropdown-panel a:hover {
    color: var(--pink-dark);
    background: #fdf2f8;
}

.header-search {
    position: relative;
    width: 250px;
}

.header-search input,
.mobile-search input,
.search-large input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    padding: 11px 44px 11px 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.header-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: var(--pink-dark);
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

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

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

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 14px;
}

.mobile-search input {
    padding-right: 16px;
}

.mobile-search button,
.search-large button {
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--pink-dark);
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
}

.mobile-nav {
    display: grid;
    gap: 10px;
}

.mobile-nav a {
    color: #fff;
    font-weight: 700;
    padding: 8px 0;
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.82) 0%, rgba(17, 24, 39, 0.58) 48%, rgba(17, 24, 39, 0.1) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(680px, 100%);
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.35);
}

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

.hero p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
    max-width: 680px;
}

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

.hero-tags span {
    padding: 6px 12px;
    color: #fff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    color: #fff;
    background: var(--pink);
    box-shadow: 0 16px 34px rgba(236, 72, 153, 0.35);
}

.primary-button:hover {
    background: var(--pink-dark);
    transform: translateY(-2px) scale(1.02);
}

.ghost-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}

.ghost-button.light {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

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

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

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

.section-block {
    padding: 64px 0;
}

.soft-band {
    background: linear-gradient(90deg, #fce7f3 0%, #f3e8ff 50%, #dbeafe 100%);
}

.white-band {
    background: #fff;
}

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

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
}

.section-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: var(--pink-dark);
    border-radius: 14px;
    background: #fce7f3;
}

.section-more {
    color: var(--pink-dark);
    font-weight: 800;
}

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.movie-poster {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
}

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

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

.badge,
.duration {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.badge {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    background: var(--pink);
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 6px 9px;
    background: rgba(0, 0, 0, 0.72);
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--pink-dark);
}

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

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
}

.large-tags span {
    min-height: 30px;
    padding: 0 12px;
    background: #fdf2f8;
    color: var(--pink-dark);
    font-weight: 700;
}

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--muted);
    font-size: 13px;
    margin-top: 14px;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 140px;
}

.horizontal-poster {
    height: 100%;
}

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

.category-tile,
.category-overview-card {
    display: block;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff7fb 100%);
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile span,
.category-overview-card h2 {
    display: block;
    margin: 0 0 8px;
    color: #111827;
    font-size: 20px;
    font-weight: 800;
}

.category-tile p,
.category-overview-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.page-hero,
.detail-top {
    color: #fff;
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 52%, #60a5fa 100%);
}

.page-hero {
    padding: 84px 0;
}

.gradient-page-hero {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 48%, #3b82f6 100%);
}

.page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
    backdrop-filter: blur(14px);
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    border: 1px solid var(--border);
    padding: 0 16px;
    background: #fff;
}

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

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

.category-overview-card > div:last-child {
    padding: 20px;
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 120px;
    overflow: hidden;
}

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

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

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.22);
}

.rank-row {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 126px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.rank-cover {
    height: 102px;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f4f6;
}

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

.rank-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.detail-top {
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding: 38px 0 70px;
}

.player-card,
.detail-card,
.sidebar-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.player-card {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    margin-bottom: 24px;
}

.movie-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: #000;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

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

.player-start {
    position: absolute;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--pink);
    font-size: 34px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.42);
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-start:hover {
    background: var(--pink-dark);
    transform: scale(1.08);
}

.player-message {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    color: #fff;
    font-size: 14px;
}

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

.detail-card h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.detail-card h2 {
    margin: 26px 0 12px;
    font-size: 24px;
}

.detail-card p {
    color: #4b5563;
    margin: 0 0 14px;
    font-size: 16px;
}

.one-line {
    padding: 18px;
    border-left: 5px solid var(--pink);
    border-radius: 14px;
    background: #fdf2f8;
    color: #831843 !important;
    font-weight: 700;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 18px;
    color: var(--muted);
}

.detail-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.detail-info-grid div {
    padding: 15px;
    border-radius: 16px;
    background: #f9fafb;
}

.detail-info-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
}

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

.small-heading {
    margin-bottom: 22px;
}

.detail-sidebar {
    display: grid;
    align-content: start;
    gap: 22px;
}

.sidebar-card {
    padding: 22px;
}

.sidebar-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.sidebar-rank {
    display: grid;
    gap: 11px;
}

.sidebar-rank a {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: center;
    color: #374151;
    font-weight: 700;
}

.sidebar-rank span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #fdf2f8;
    color: var(--pink-dark);
}

.poster-side-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.poster-side-card p {
    color: var(--muted);
    margin: 0;
}

.search-page-block {
    min-height: 420px;
}

.search-large {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 28px;
}

.search-large input {
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid var(--border);
    background: #fff;
}

.search-large button {
    min-height: 54px;
    padding: 0 28px;
    color: #fff;
    background: var(--pink);
}

.empty-state {
    display: none;
    padding: 50px 20px;
    text-align: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 22px;
}

.empty-state.is-visible {
    display: block;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827 0%, #1f2937 48%, #111827 100%);
    padding: 54px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 34px;
}

.footer-logo {
    margin-bottom: 16px;
}

.site-footer h3 {
    color: #fff;
    margin: 0 0 14px;
}

.site-footer p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.site-footer a:hover {
    color: #f9a8d4;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    font-size: 13px;
}

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

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

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

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

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

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

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

    .logo-text {
        font-size: 20px;
    }

    .hero {
        height: 620px;
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 92px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.6) 58%, rgba(17, 24, 39, 0.2) 100%);
    }

    .section-block {
        padding: 44px 0;
    }

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

    .movie-grid,
    .feature-grid,
    .horizontal-grid,
    .category-grid,
    .category-overview-grid,
    .related-grid,
    .compact-rank-list,
    .footer-grid,
    .detail-sidebar {
        grid-template-columns: 1fr;
    }

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

    .movie-poster {
        height: 230px;
    }

    .horizontal-poster {
        height: 100%;
    }

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

    .page-hero {
        padding: 58px 0;
    }

    .page-hero-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .rank-row {
        grid-template-columns: 92px 1fr;
    }

    .detail-card,
    .sidebar-card {
        padding: 20px;
    }

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

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .movie-card-horizontal,
    .rank-row,
    .rank-item {
        grid-template-columns: 1fr;
    }

    .horizontal-poster,
    .rank-cover {
        height: 190px;
    }

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

    .player-start {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
