:root {
    color-scheme: light;
    --page: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --teal: #14b8a6;
    --red: #ef4444;
    --orange: #f97316;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 44%, #f8fafc 100%);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.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 10px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(16px);
}

.site-nav {
    max-width: 1240px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.brand-name {
    font-size: 21px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    color: #334155;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: #eff6ff;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.header-search {
    width: 280px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.header-search input,
.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.header-search button,
.mobile-search button,
.primary-button,
.secondary-button,
.back-top,
.filter-button,
.load-more-button {
    border: 0;
    cursor: pointer;
    font-weight: 750;
}

.header-search button,
.mobile-search button {
    padding: 8px 14px;
    color: #ffffff;
    border-radius: 999px;
    background: var(--blue);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: 26px;
    color: var(--ink);
}

.mobile-panel {
    display: none;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 18px;
}

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

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-soft);
    color: #334155;
    font-weight: 650;
}

.mobile-link.active {
    color: var(--blue);
    background: #dbeafe;
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(120deg, #2563eb 0%, #0ea5e9 48%, #14b8a6 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 26%),
        radial-gradient(circle at 80% 12%, rgba(45, 212, 191, 0.32), transparent 30%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.18));
    z-index: 2;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    transform: scale(1.04);
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    min-height: 600px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 48px;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #fde68a;
    font-weight: 800;
}

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

.hero-copy p {
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.8;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.primary-button:hover,
.secondary-button:hover,
.back-top:hover,
.filter-button:hover,
.load-more-button:hover {
    transform: translateY(-2px);
}

.hero-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(18px);
}

.hero-card .poster {
    border-radius: 0;
}

.hero-card-body {
    padding: 22px;
    color: #ffffff;
}

.hero-card-body h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.hero-card-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.hero-controls {
    position: absolute;
    right: 24px;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

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

.main-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px;
}

.main-section.tint-blue {
    max-width: none;
    background: linear-gradient(90deg, #eff6ff 0%, #ecfeff 100%);
}

.main-section.tint-orange {
    max-width: none;
    background: linear-gradient(90deg, #fff7ed 0%, #fff1f2 100%);
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-heading h1,
.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more {
    color: var(--blue);
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: var(--shadow);
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1d4ed8, #14b8a6);
}

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.72) 100%);
    pointer-events: none;
}

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

.poster img.image-missing {
    opacity: 0;
}

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

.poster-wide {
    height: 100%;
    min-height: 148px;
}

.card-category,
.duration,
.rank-badge {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.card-category {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: var(--blue);
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    background: rgba(15, 23, 42, 0.72);
}

.rank-badge {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.24);
}

.play-hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.play-hover::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.play-hover {
    text-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
}

.movie-card:hover .play-hover,
.hero-card:hover .play-hover {
    opacity: 1;
}

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

.movie-card-body h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

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

.movie-card-body p {
    margin: 0 0 14px;
    min-height: 46px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.movie-meta,
.card-kicker,
.detail-meta,
.breadcrumbs {
    color: var(--muted);
    font-size: 13px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--surface-soft);
}

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

.tag-row span,
.detail-tags span,
.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 13px;
    font-weight: 750;
}

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

.category-card {
    padding: 22px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.category-card strong {
    color: var(--blue);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    gap: 12px;
    margin: 0 0 30px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    color: var(--ink);
    background: #ffffff;
}

.filter-button,
.load-more-button,
.back-top {
    min-height: 46px;
    padding: 0 18px;
    color: #ffffff;
    border-radius: 14px;
    background: var(--blue);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 90px;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.rank-num {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.rank-title h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.rank-title p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.rank-score {
    color: var(--red);
    font-weight: 900;
    text-align: right;
}

.side-card {
    position: sticky;
    top: 96px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.side-card h3 {
    margin: 0 0 14px;
}

.side-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.side-card a {
    color: var(--blue);
    font-weight: 700;
}

.detail-hero {
    background: linear-gradient(120deg, #0f172a, #1d4ed8 55%, #14b8a6);
    color: #ffffff;
}

.detail-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 42px 24px 50px;
}

.breadcrumbs {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
}

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

.detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 38px;
    align-items: center;
}

.detail-title h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-title p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #ffffff;
}

.detail-meta span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.player-section {
    max-width: 1240px;
    margin: -24px auto 0;
    padding: 0 24px 64px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.video-player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.24), rgba(2, 6, 23, 0.82));
    cursor: pointer;
}

.player-button {
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-size: 38px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.player-status {
    position: absolute;
    left: 22px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.detail-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
}

.content-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.content-card + .content-card {
    margin-top: 22px;
}

.content-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: #334155;
    line-height: 1.9;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-mini {
    display: grid;
    gap: 12px;
}

.related-mini a {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: #f8fafc;
}

.related-mini .poster {
    border-radius: 12px;
}

.related-mini strong {
    display: block;
    margin-bottom: 4px;
}

.related-mini span {
    color: var(--muted);
    font-size: 13px;
}

.library-list {
    columns: 4 240px;
    column-gap: 28px;
}

.library-list a {
    display: block;
    break-inside: avoid;
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: #334155;
}

.library-list a:hover {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.32);
}

.search-results-empty {
    padding: 40px;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
}

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

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 24px;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.footer-brand span {
    color: #60a5fa;
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

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

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

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

.back-top {
    margin-top: 18px;
    background: #2563eb;
}

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

.hidden-by-filter {
    display: none !important;
}

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

    .mobile-toggle {
        display: block;
    }

    .hero-inner,
    .detail-head,
    .detail-content,
    .rank-layout {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .detail-cover,
    .side-card {
        max-width: 520px;
    }

    .side-card {
        position: static;
    }

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

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

@media (max-width: 760px) {
    .site-nav {
        height: 62px;
        padding: 0 16px;
    }

    .brand-name {
        font-size: 18px;
    }

    .hero,
    .hero-inner {
        min-height: 720px;
    }

    .hero-inner {
        padding: 54px 16px 86px;
        gap: 28px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-controls {
        right: 16px;
    }

    .main-section,
    .section-inner,
    .detail-hero-inner,
    .player-section,
    .detail-content {
        padding-left: 16px;
        padding-right: 16px;
    }

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

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

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

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

    .rank-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .rank-score {
        grid-column: 2;
        text-align: left;
    }

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

@media (max-width: 460px) {
    .movie-grid,
    .movie-grid.compact,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .mobile-links {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }
}
