:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #e11d48;
  --brand-dark: #be123c;
  --violet: #7c3aed;
  --blue: #2563eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.nav-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.28);
}

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

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: #475569;
  font-weight: 700;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: #111827;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #111827;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(225, 29, 72, 0.42), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.42), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #1e1b4b 46%, #7f1d1d 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.35;
}

.hero-wrap {
  position: relative;
  min-height: 630px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
  gap: 54px;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fda4af;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

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

.tag-row span {
  color: #475569;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #f97316);
  box-shadow: 0 15px 34px rgba(225, 29, 72, 0.36);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn.dark {
  color: #111827;
  border-color: var(--line);
  background: #ffffff;
}

.primary-btn.slim {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero-art {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f2937, #7f1d1d);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-art img {
  transition: transform 0.6s ease;
}

.hero-art:hover img {
  transform: scale(1.05);
}

.hero-art::after,
.poster::after,
.detail-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.68));
}

.hero-play,
.poster-play,
.detail-poster span {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(225, 29, 72, 0.92);
  box-shadow: 0 14px 32px rgba(225, 29, 72, 0.4);
}

.hero-play {
  left: 24px;
  bottom: 24px;
  font-size: 24px;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 46px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-dots button.active {
  width: 58px;
  background: #ffffff;
}

.section {
  padding: 78px 0;
}

.section-lift {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.soft-section {
  background: #ffffff;
}

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

.compact-head {
  margin-bottom: 18px;
}

.section-head h2,
.spotlight-panel h2,
.detail-side h2,
.watch-panel h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.text-link {
  color: var(--brand);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.catalog-tools.single-tool {
  grid-template-columns: 1fr;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

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

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

.filter-select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #4c1d95);
}

.poster img {
  transition: transform 0.45s ease;
}

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

.poster-play {
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: scale(1);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  min-width: 38px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #f97316);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.24);
}

.movie-info {
  padding: 18px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
}

.movie-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.movie-info h3 {
  margin: 9px 0 8px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.movie-info h3 a:hover,
.rank-copy h2 a:hover,
.category-overview-card h2 a:hover {
  color: var(--brand);
}

.movie-info p,
.category-card p,
.category-overview-card p,
.page-hero p,
.detail-side p,
.watch-panel p,
.spotlight-panel p,
.rank-copy p {
  color: var(--muted);
  margin: 0;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #7c2d12);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16);
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, #111827, #4c1d95);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #111827, #1d4ed8);
}

.category-glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card strong {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
}

.category-card p,
.category-card em {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.category-card em {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 900;
}

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

.ranking-list,
.side-list,
.spotlight-stack {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.mini-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #7c2d12);
}

.mini-copy strong,
.mini-copy em {
  display: block;
}

.mini-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.mini-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.spotlight-panel {
  align-self: start;
  padding: 28px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #701a75);
  box-shadow: var(--shadow);
}

.spotlight-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 22px;
}

.spotlight-panel .mini-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.spotlight-panel .mini-copy em {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 0%, rgba(225, 29, 72, 0.36), transparent 32%),
    linear-gradient(135deg, #0f172a, #312e81 58%, #7f1d1d);
}

.page-hero h1 {
  max-width: 820px;
  margin: 10px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

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

.category-overview {
  display: grid;
  gap: 18px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

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

.category-covers img {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #4c1d95);
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.category-overview-card p {
  margin-bottom: 18px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 60px 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.rank-num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #f97316);
  font-size: 22px;
  font-weight: 900;
}

.rank-cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #7c2d12);
}

.rank-copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.detail-hero {
  padding-bottom: 92px;
}

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

.detail-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #111827, #7c2d12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.detail-poster span {
  left: 22px;
  bottom: 22px;
}

.detail-copy h1 {
  margin: 12px 0 14px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.one-line {
  max-width: 850px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.detail-facts li {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-facts span,
.detail-facts strong {
  display: block;
}

.detail-facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.detail-facts strong {
  overflow: hidden;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-section {
  margin-top: -62px;
  position: relative;
  z-index: 4;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 26px;
}

.watch-panel,
.detail-side {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.1);
}

.watch-panel {
  overflow: hidden;
}

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

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #030712;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.68));
  cursor: pointer;
}

.play-cover span {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #f97316);
  font-size: 32px;
  box-shadow: 0 18px 44px rgba(225, 29, 72, 0.46);
  transition: transform 0.2s ease;
}

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

.video-shell.playing .play-cover {
  display: none;
}

.watch-panel h2,
.watch-panel p {
  padding-inline: 26px;
}

.watch-panel h2 {
  margin-top: 24px;
}

.watch-panel p {
  padding-bottom: 28px;
  font-size: 17px;
}

.detail-side {
  align-self: start;
  padding: 24px;
}

.detail-side h2 {
  font-size: 28px;
}

.detail-side p {
  margin: 12px 0 20px;
}

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

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

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

.footer-inner p {
  margin: 8px 0 0;
  max-width: 620px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

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

.is-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-slide,
  .detail-layout,
  .watch-grid,
  .rank-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-wrap,
  .hero-slider {
    min-height: 820px;
  }

  .hero-art {
    max-width: 620px;
  }

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

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

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

  .detail-poster {
    max-width: 360px;
  }
}

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

  .menu-toggle {
    display: inline-block;
  }

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

  .mobile-nav .nav-link {
    display: block;
    padding: 12px 14px;
  }

  .hero,
  .hero-wrap,
  .hero-slider {
    min-height: 760px;
  }

  .hero-wrap {
    padding: 34px 0 70px;
  }

  .hero-slide {
    gap: 26px;
  }

  .hero-copy h1,
  .detail-copy h1 {
    font-size: 42px;
  }

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

  .hero-dots {
    bottom: 26px;
  }

  .section {
    padding: 52px 0;
  }

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

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .related-grid,
  .category-movie-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 48px 104px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .rank-cover {
    aspect-ratio: 4 / 5;
  }

  .rank-copy p {
    display: none;
  }

  .rank-copy h2 {
    font-size: 18px;
  }

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

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

  .watch-section {
    margin-top: -38px;
  }

  .play-cover span {
    width: 68px;
    height: 68px;
  }
}
