:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --rose-500: #f43f5e;
  --ink: #1f2937;
  --muted: #6b7280;
  --paper: rgba(255, 255, 255, 0.92);
  --line: rgba(180, 83, 9, 0.18);
  --shadow: 0 18px 55px rgba(146, 64, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fff7ed 0%, #fefce8 45%, #fffbeb 100%);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-bg::before,
.page-bg::after {
  position: absolute;
  content: "";
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.35;
}

.page-bg::before {
  top: -130px;
  left: -120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.42), transparent 68%);
}

.page-bg::after {
  right: -140px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.36), transparent 68%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.26);
  transform: translateZ(0);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-3deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  border-radius: 14px;
  color: #374151;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link {
  padding: 11px 16px;
  font-weight: 650;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-700);
  background: rgba(253, 230, 138, 0.64);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--amber-700);
  background: rgba(253, 230, 138, 0.64);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.mobile-link {
  display: block;
  padding: 13px 14px;
  font-weight: 650;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--amber-700);
  background: rgba(253, 230, 138, 0.62);
}

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

.hero-slider {
  position: relative;
  margin: 32px 0 34px;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #78350f, #f59e0b 48%, #fff7ed);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.32), transparent 26%),
    radial-gradient(circle at 78% 12%, rgba(255, 237, 213, 0.46), transparent 28%),
    linear-gradient(135deg, rgba(120, 53, 15, 0.84), rgba(217, 119, 6, 0.2));
  z-index: 1;
}

.hero-slides {
  position: relative;
  min-height: 560px;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 42px;
  padding: clamp(34px, 6vw, 72px);
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-copy {
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.section-eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: var(--amber-700);
  background: rgba(254, 243, 199, 0.94);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.14);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-meta span,
.detail-meta span,
.card-meta span {
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 650;
}

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

.btn-primary,
.btn-ghost,
.card-foot a,
.category-tile span,
.detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  padding: 14px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-600));
  box-shadow: 0 18px 35px rgba(244, 63, 94, 0.24);
}

.btn-ghost {
  padding: 13px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-ghost:hover,
.card-foot a:hover,
.category-tile:hover span,
.detail-actions a:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 35px 80px rgba(67, 20, 7, 0.34);
  transform: rotate(2deg);
}

.hero-poster::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.42));
}

.hero-poster img {
  height: 100%;
  object-fit: cover;
}

.hero-poster-card {
  position: absolute;
  left: -24px;
  bottom: 28px;
  z-index: 3;
  width: min(310px, 80%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  color: #fff;
  background: rgba(67, 20, 7, 0.58);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-poster-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-poster-card em {
  color: var(--amber-100);
  font-style: normal;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  left: clamp(34px, 6vw, 72px);
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

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

.hero-dots button.active {
  width: 54px;
  background: #fff;
}

.section-block {
  margin: 38px 0;
}

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

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.more-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--amber-700);
  background: rgba(253, 230, 138, 0.72);
  font-weight: 800;
}

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

.category-tile {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 35px rgba(146, 64, 14, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile h2,
.category-tile h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

.category-tile span {
  margin-top: 20px;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.13);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(146, 64, 14, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), #fff7ed);
}

.poster-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

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

.poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.44));
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-600));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
  font-weight: 900;
}

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

.card-meta span,
.detail-meta span {
  color: var(--amber-700);
  background: rgba(253, 230, 138, 0.72);
}

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

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

.movie-card p {
  min-height: 54px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #92400e;
  background: rgba(255, 251, 235, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.18);
  font-size: 12px;
  font-weight: 700;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 750;
}

.card-foot a {
  padding: 9px 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.page-hero {
  margin: 32px 0 28px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 237, 213, 0.35), transparent 35%),
    linear-gradient(135deg, #78350f, var(--amber-600) 55%, var(--orange-600));
  box-shadow: var(--shadow);
}

.narrow-hero {
  min-height: 250px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  margin: 16px 0 14px;
  max-width: 900px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

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

.movie-filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 14px;
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 35px rgba(146, 64, 14, 0.08);
}

.movie-filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
}

.movie-filter-panel input,
.movie-filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 16px;
  padding: 0 14px;
  color: #1f2937;
  background: #fff;
  outline: none;
}

.movie-filter-panel input:focus,
.movie-filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--amber-700);
  font-weight: 750;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 42px;
}

.detail-main,
.detail-side,
.player-section,
.article-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(146, 64, 14, 0.1);
}

.player-section {
  overflow: hidden;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111827;
  cursor: pointer;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #111827;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.25);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
}

.player-play-button {
  position: relative;
  z-index: 4;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-600));
  box-shadow: 0 20px 50px rgba(244, 63, 94, 0.34);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.player-title {
  padding: 22px 24px;
}

.player-title h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.player-title p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 16px;
}

.article-panel {
  margin-top: 22px;
  padding: 26px;
}

.article-panel h2,
.detail-side h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.article-panel p {
  margin: 0 0 16px;
  color: #374151;
  line-height: 1.9;
}

.detail-side {
  padding: 20px;
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--amber-100), #fff7ed);
}

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

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  text-align: right;
  color: #92400e;
  font-weight: 800;
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.detail-actions a {
  flex: 1;
  min-height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

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

.related-link {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(217, 119, 6, 0.13);
  border-radius: 18px;
  background: rgba(255, 251, 235, 0.52);
  transition: transform 0.22s ease, background 0.22s ease;
}

.related-link:hover {
  transform: translateX(4px);
  background: rgba(253, 230, 138, 0.46);
}

.related-link img {
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--amber-100);
}

.related-link strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.35;
}

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

.site-footer {
  margin-top: 58px;
  color: var(--amber-100);
  background: linear-gradient(135deg, #78350f, #92400e 52%, #451a03);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
  padding: 42px 0 34px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: rgba(254, 243, 199, 0.78);
}

.footer-brand p {
  margin: 0;
  line-height: 1.76;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: #fff7ed;
}

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

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(253, 230, 138, 0.22);
  text-align: center;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--amber-600);
  box-shadow: 0 14px 30px rgba(146, 64, 14, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.is-filtered-out {
  display: none !important;
}

@media (max-width: 1080px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .detail-side {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 20px;
  }
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-slider,
  .hero-slides {
    min-height: 730px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 24px 84px;
  }

  .hero-poster {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-dots {
    left: 24px;
  }

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

  .filter-search {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .header-inner,
  main,
  .mobile-nav,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1200px);
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-slider,
  .hero-slides {
    min-height: 680px;
    border-radius: 24px;
  }

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

  .hero-poster-card {
    left: 12px;
    bottom: 16px;
  }

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

  .category-grid,
  .movie-grid,
  .movie-filter-panel,
  .footer-inner,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .movie-card p {
    min-height: auto;
  }

  .page-hero {
    border-radius: 24px;
  }

  .player-title,
  .article-panel,
  .detail-side {
    padding: 18px;
  }

  .player-play-button {
    width: 74px;
    height: 74px;
  }
}
