:root {
  --color-ocean-dark: #0a2540;
  --color-ocean-primary: #1a4d7a;
  --color-ocean-light: #2e6ba8;
  --color-sea-foam: #4fb3bf;
  --color-sand: #f4e8d0;
  --color-coral: #ff6b6b;
  --color-sunset: #ff9f43;
  --color-sky: #74b9ff;
  --color-white-soft: rgba(255, 255, 255, 0.84);
  --color-white-muted: rgba(255, 255, 255, 0.62);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 12px 24px rgba(0, 0, 0, 0.3);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(79, 179, 191, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--color-ocean-dark), var(--color-ocean-primary) 50%, var(--color-ocean-dark));
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.glass-effect {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-sea-foam), var(--color-sky));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-shadow {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-right: 0;
  border-left: 0;
  border-top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

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

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(79, 179, 191, 0.18);
  color: var(--color-sea-foam);
  box-shadow: inset 0 0 0 1px rgba(79, 179, 191, 0.35);
}

.brand-text {
  font-size: clamp(20px, 2vw, 28px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.nav-link,
.mobile-link {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #ffffff;
}

.nav-link.is-active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-sea-foam);
  content: "";
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-carousel {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--color-ocean-dark);
}

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

.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 64px;
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 159, 67, 0.16);
  color: var(--color-sunset);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.06;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 720px;
  margin: 24px 0 30px;
  color: var(--color-white-soft);
  font-size: clamp(17px, 2vw, 23px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.primary-button {
  background: var(--color-sea-foam);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(79, 179, 191, 0.24);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  background: #3a9aa5;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

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

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--color-sea-foam);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-gradient {
  background: linear-gradient(180deg, var(--color-ocean-primary), var(--color-ocean-dark));
}

.section-gradient-reverse {
  background: linear-gradient(180deg, var(--color-ocean-dark), var(--color-ocean-primary));
}

.section-solid {
  background: rgba(10, 37, 64, 0.86);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading.with-action {
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0 0 4px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

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

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 159, 67, 0.16);
  color: var(--color-sunset);
  font-size: 22px;
}

.section-icon.hot {
  background: rgba(255, 107, 107, 0.16);
  color: var(--color-coral);
}

.section-icon.blue {
  background: rgba(116, 185, 255, 0.16);
  color: var(--color-sky);
}

.text-link {
  color: var(--color-sea-foam);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.movie-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.08);
}

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

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.76));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
}

.play-circle,
.player-start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--color-sunset);
  font-weight: 900;
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

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

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

.card-meta-row,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.badge,
.detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 179, 191, 0.13);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.filter-panel,
.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: var(--radius-md);
}

.filter-search-wrap,
.filter-select-wrap {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select,
.search-box input,
.search-box select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: 0;
  background: rgba(10, 37, 64, 0.68);
  color: #ffffff;
  padding: 0 14px;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-box input:focus,
.search-box select:focus {
  border-color: rgba(79, 179, 191, 0.85);
  box-shadow: 0 0 0 4px rgba(79, 179, 191, 0.15);
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.category-tile {
  display: block;
  padding: 26px;
}

.category-tile::before,
.category-overview-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--tile-accent) 36%, transparent), transparent 55%);
  content: "";
  pointer-events: none;
}

.category-count {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: var(--tile-accent);
  font-weight: 900;
}

.category-tile h3,
.category-overview-copy h2 {
  position: relative;
  margin: 0 0 10px;
  font-size: 24px;
}

.category-tile p,
.category-overview-copy p {
  position: relative;
  margin: 0;
  color: var(--color-white-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
}

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

.compact-rank-list {
  gap: 12px;
}

.rank-item a {
  display: grid;
  grid-template-columns: 58px 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background 0.25s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 159, 67, 0.16);
  color: var(--color-sunset);
  font-size: 20px;
  font-weight: 900;
}

.rank-item img {
  width: 88px;
  height: 112px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-copy h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.rank-copy p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--color-white-muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(79, 179, 191, 0.2), transparent 34rem), var(--color-ocean-dark);
}

.compact-page-hero {
  padding: 90px 0 64px;
}

.compact-page-hero h1 {
  font-size: clamp(36px, 6vw, 66px);
}

.compact-page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-white-soft);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--color-sea-foam);
}

.category-overview-card a {
  display: block;
}

.category-poster-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px 12px 0;
}

.category-poster-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.category-overview-copy {
  position: relative;
  padding: 20px;
}

.category-overview-copy span {
  color: var(--tile-accent);
  font-weight: 900;
}

.detail-hero {
  min-height: 74vh;
  padding: 46px 0 66px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(0);
}

.detail-container {
  position: relative;
  z-index: 2;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: center;
}

.player-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

.video-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: #000000;
  color: #ffffff;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.player-overlay::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.82) 100%);
  content: "";
}

.player-start-button {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 34px;
}

.player-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.detail-info h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
}

.detail-one-line {
  color: var(--color-white-soft);
  font-size: 18px;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.detail-tags {
  margin: 20px 0 28px;
}

.detail-content-section {
  padding-top: 56px;
}

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

.detail-copy {
  padding: 28px;
  border-radius: var(--radius-md);
}

.detail-copy h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-copy p {
  margin: 0;
  color: var(--color-white-soft);
  font-size: 16px;
}

.search-page-wrap {
  max-width: 1040px;
}

.search-box {
  grid-template-columns: minmax(0, 1fr) 180px;
  margin-bottom: 36px;
}

.search-results-title {
  margin: 0 0 20px;
  font-size: 28px;
}

.sitemap-wrap {
  display: grid;
  gap: 22px;
}

.sitemap-group {
  padding: 22px;
  border-radius: var(--radius-md);
}

.sitemap-group h2 {
  margin: 0 0 14px;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-links a {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sitemap-links a:hover {
  color: var(--color-sea-foam);
}

.sitemap-links span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.empty-state {
  padding: 30px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white-muted);
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #071c31;
  padding: 44px 0;
}

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

.footer-brand {
  margin-bottom: 14px;
  font-size: 20px;
}

.footer-about p,
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--color-sea-foam);
}

[hidden] {
  display: none !important;
}

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

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

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }

  .featured-grid,
  .split-layout,
  .detail-grid,
  .detail-copy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero-carousel {
    min-height: 78vh;
  }

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

  .section {
    padding: 48px 0;
  }

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

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

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

  .movie-card-body h3 {
    font-size: 15px;
  }

  .movie-card-body p,
  .tag-row {
    display: none;
  }

  .rank-item a {
    grid-template-columns: 42px 72px minmax(0, 1fr);
    gap: 12px;
    min-height: 104px;
    padding: 10px;
  }

  .rank-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .rank-item img {
    width: 72px;
    height: 96px;
  }

  .rank-copy h3 {
    font-size: 16px;
  }

  .rank-copy p {
    display: none;
  }

  .detail-hero {
    padding-top: 28px;
  }

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