:root {
    --cyan: #06b6d4;
    --blue: #2563eb;
    --deep-blue: #1d4ed8;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --dark: #111827;
    --shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.09);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.28);
}

.header-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-icon {
    font-size: 32px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.28s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.12) rotate(-6deg);
}

.brand-text {
    font-size: 22px;
    white-space: nowrap;
}

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

.nav-link,
.header-search {
    position: relative;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.header-search:hover {
    color: #ecfeff;
}

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

.header-search {
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    padding: 10px;
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    padding: 10px 16px 18px;
    background: rgba(29, 78, 216, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-link {
    display: block;
    padding: 11px 6px;
    font-weight: 800;
    color: #ffffff;
}

.mobile-link.active {
    color: #cffafe;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #22d3ee, #2563eb 72%);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 38%, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(90deg, rgba(6, 182, 212, 0.94), rgba(37, 99, 235, 0.80) 46%, rgba(17, 24, 39, 0.76));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    z-index: 2;
}

.hero-copy {
    max-width: 670px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.17);
    color: #ecfeff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    backdrop-filter: blur(14px);
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
    margin: 18px 0 14px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
}

.hero p,
.page-hero p,
.detail-intro p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.hero-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-size: 13px;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn.primary {
    background: #ffffff;
    color: var(--deep-blue);
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.26);
}

.btn.ghost {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.82);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn.subtle {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-poster {
    width: min(330px, 28vw);
    flex: 0 0 auto;
    border-radius: 30px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 24px;
}

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

.hero-dot {
    width: 34px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

.hero-dot.active {
    width: 54px;
    background: #ffffff;
}

.quick-features {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -52px;
}

.feature-card {
    min-height: 138px;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-card span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 13px;
    color: var(--blue);
    background: linear-gradient(135deg, #ecfeff, #dbeafe);
    font-size: 22px;
}

.feature-card strong {
    font-size: 20px;
}

.feature-card em {
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
}

.content-section {
    padding: 72px 0;
}

.pale-section {
    background: #f8fafc;
}

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

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

.section-heading h2::after {
    content: "";
    display: block;
    width: 78px;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--muted);
}

.section-more {
    flex: 0 0 auto;
    padding: 10px 17px;
    border-radius: 999px;
    color: var(--blue);
    background: #eff6ff;
    font-weight: 900;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

.large-grid {
    grid-template-columns: repeat(6, 1fr);
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #dbeafe);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
    opacity: 0.8;
}

.play-mini {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
    transform: scale(0.92);
    transition: transform 0.25s ease;
}

.movie-card:hover .play-mini {
    transform: scale(1.08);
}

.card-body {
    padding: 16px;
}

.card-meta {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--blue);
}

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

.movie-card.compact .poster-link img {
    aspect-ratio: 16 / 10;
}

.movie-card.compact h3 {
    font-size: 16px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-row span {
    min-height: 24px;
    padding: 3px 9px;
    color: #0369a1;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    font-size: 12px;
}

.rank-badge {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.25);
}

.category-strip {
    padding: 76px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.24), transparent 27%),
        linear-gradient(90deg, var(--blue), var(--cyan));
}

.category-strip h2,
.category-strip p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.category-strip h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 38px;
}

.category-strip p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
}

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

.category-cloud a {
    min-height: 86px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    font-weight: 900;
    transition: background 0.22s ease, transform 0.22s ease;
}

.category-cloud a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.category-cloud span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 500;
}

.page-hero {
    position: relative;
    padding: 84px 0;
    color: #ffffff;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.20), transparent 28%),
        linear-gradient(135deg, var(--cyan), var(--blue));
}

.simple-hero h1,
.category-hero h1,
.ranking-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
}

.page-actions .btn.primary {
    color: var(--blue);
}

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

.category-card {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    background: #ffffff;
}

.category-card a {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    color: #ffffff;
}

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

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

.category-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.82));
}

.category-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
}

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

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.filter-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.search-box {
    flex: 1 1 420px;
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.search-box input,
.filter-selects select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
    color: var(--text);
    padding: 0 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.filter-selects select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.filter-selects {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.filter-selects select {
    min-width: 135px;
}

.empty-state {
    display: none;
    padding: 36px;
    text-align: center;
    border-radius: 22px;
    color: var(--muted);
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}

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

.detail-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) scale(1.08) saturate(1.08);
    opacity: 0.50;
}

.detail-bg-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.32), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(30, 64, 175, 0.72));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 42px;
    padding: 60px 0;
}

.detail-poster {
    padding: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

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

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

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

.breadcrumb em {
    font-style: normal;
    color: #ffffff;
}

.detail-meta span {
    background: rgba(255, 255, 255, 0.12);
}

.detail-section {
    background: #f8fafc;
}

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

.player-card,
.side-panel,
.article-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
}

.video-wrap {
    position: relative;
    background: #020617;
    aspect-ratio: 16 / 9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.44));
}

.play-overlay span {
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 50%;
    color: var(--blue);
    background: #ffffff;
    font-size: 36px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    transition: transform 0.22s ease;
}

.play-overlay:hover span {
    transform: scale(1.08);
}

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

.player-card h2,
.player-card p {
    margin-left: 24px;
    margin-right: 24px;
}

.player-card h2 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 28px;
}

.player-card p {
    margin-top: 0;
    margin-bottom: 26px;
    color: var(--muted);
}

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

.side-panel h2 {
    margin: 0 0 18px;
}

.side-panel dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 14px;
    margin: 0 0 22px;
}

.side-panel dt {
    color: var(--muted);
}

.side-panel dd {
    margin: 0;
    font-weight: 800;
}

.side-panel a {
    color: var(--blue);
}

.tag-block + .tag-block {
    margin-top: 18px;
}

.tag-block h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.article-section {
    padding-top: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 26px;
}

.article-card {
    padding: 30px;
}

.article-card h2 {
    margin: 0 0 14px;
    font-size: 27px;
}

.article-card p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.accent-card {
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.site-footer {
    color: #ffffff;
    background: linear-gradient(180deg, #1f2937, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 22px;
}

.footer-brand span {
    font-size: 30px;
}

.site-footer p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer h3 {
    margin: 0 0 12px;
}

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

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

.footer-links a:hover {
    color: #67e8f9;
}

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

.footer-bottom {
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

@media (max-width: 1100px) {
    .large-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .side-panel {
        position: static;
    }
}

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

    .menu-button {
        display: block;
    }

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

    .hero {
        min-height: 720px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 24px;
        padding-bottom: 74px;
    }

    .hero-poster {
        width: 210px;
        transform: rotate(0deg);
    }

    .quick-features {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 22px;
    }

    .section-heading,
    .filter-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-selects {
        flex-wrap: wrap;
    }

    .filter-selects select {
        flex: 1 1 140px;
    }

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

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

    .detail-poster {
        width: min(260px, 74vw);
    }

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

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

    .brand-text {
        font-size: 19px;
    }

    .hero {
        min-height: 760px;
    }

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

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

    .quick-features,
    .large-grid,
    .compact-grid,
    .category-grid,
    .category-cloud,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 48px 0;
    }

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

    .detail-hero {
        min-height: auto;
    }

    .play-overlay span {
        width: 72px;
        height: 72px;
        font-size: 30px;
    }
}
