:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --red-50: #fef2f2;
  --red-500: #ef4444;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(219, 39, 119, 0.08);
  --shadow-lg: 0 25px 60px rgba(219, 39, 119, 0.16);
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  background: linear-gradient(180deg, #ffffff 0%, rgba(253, 242, 248, 0.55) 42%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(252, 231, 243, 0.95);
  background: linear-gradient(90deg, rgba(253, 242, 248, 0.95), rgba(254, 242, 242, 0.95), rgba(255, 237, 213, 0.95));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-500), var(--red-500), var(--orange-500));
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
}

.brand-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
}

.brand-text {
  font-size: 1.08rem;
}

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

.nav-link,
.mobile-nav-link {
  border-radius: 999px;
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 15px;
  font-size: 0.95rem;
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: var(--pink-600);
  background: rgba(252, 231, 243, 0.75);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--gray-800);
}

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

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

.mobile-nav-link {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 108px;
  background: linear-gradient(135deg, var(--pink-100), var(--red-50) 52%, var(--orange-100));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-600);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--pink-500), var(--red-500), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-lead,
.page-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--gray-700);
  font-size: clamp(1rem, 2.1vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink-500), var(--red-500));
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.28);
}

.secondary-button {
  color: var(--pink-600);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-pills a {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  font-size: 0.93rem;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(4px);
}

.hero-pills a:hover {
  color: var(--pink-600);
  background: var(--pink-100);
  transform: scale(1.04);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.24;
  filter: blur(1px);
  animation: floatPulse 5s ease-in-out infinite;
}

.orb-one {
  top: 34px;
  left: 8%;
  width: 80px;
  height: 80px;
  background: var(--pink-500);
}

.orb-two {
  top: 170px;
  right: 11%;
  width: 132px;
  height: 132px;
  background: var(--red-500);
  animation-delay: 0.9s;
}

.orb-three {
  bottom: 58px;
  left: 30%;
  width: 96px;
  height: 96px;
  background: var(--orange-500);
  animation-delay: 1.6s;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -12px, 0) scale(1.08);
  }
}

.hero-feature-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: -52px;
}

.hero-feature-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.hero-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-feature-media img,
.card-media img,
.mini-card img,
.ranking-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.hero-feature-media::after,
.card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.64));
}

.hero-feature-media span,
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--pink-500);
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-feature-body {
  padding: 18px;
}

.hero-feature-body h2,
.card-body h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-feature-body p,
.card-body p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-feature-body strong {
  color: var(--pink-600);
  font-size: 0.9rem;
}

.page-section {
  padding: 64px 0;
}

.soft-section {
  background: linear-gradient(90deg, var(--pink-50), var(--red-50));
}

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

.section-heading h2 {
  display: inline-flex;
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink-500), var(--red-500));
  box-shadow: 0 10px 22px rgba(236, 72, 153, 0.22);
}

.section-more {
  flex: 0 0 auto;
  color: var(--pink-600);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(160px, 220px));
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(252, 231, 243, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.filter-search,
.filter-item {
  display: grid;
  gap: 7px;
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 800;
}

.filter-search input,
.filter-item select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  outline: none;
  padding: 0 16px;
  color: var(--gray-800);
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-search input:focus,
.filter-item select:focus {
  border-color: var(--pink-200);
  box-shadow: 0 0 0 4px rgba(252, 231, 243, 0.8);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(243, 244, 246, 0.95);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-100);
}

.play-float {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  margin: auto;
  place-items: center;
  border-radius: 999px;
  color: var(--pink-500);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
  padding: 14px;
}

.card-body h3 a:hover {
  color: var(--pink-600);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.card-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gray-50);
}

.mini-scroll {
  display: grid;
  grid-auto-columns: minmax(150px, 170px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
}

.mini-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.mini-card img {
  aspect-ratio: 3 / 4;
}

.mini-card span {
  display: block;
  padding: 12px;
  overflow: hidden;
  color: var(--gray-800);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 46px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-number,
.ranking-number {
  color: var(--pink-600);
  font-size: 1.15rem;
  font-weight: 900;
}

.rank-card img {
  width: 72px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-title {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-score,
.ranking-score {
  color: var(--red-500);
  font-weight: 900;
}

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

.category-tile,
.category-overview-card {
  border: 1px solid rgba(252, 231, 243, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile {
  padding: 22px;
}

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

.category-tile span,
.category-overview-card h2 {
  display: block;
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 1.15rem;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: var(--gray-600);
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--pink-100), var(--red-50), var(--orange-100));
}

.compact-hero h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--pink-600);
}

.category-overview-card {
  padding: 20px;
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

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

.category-samples .mini-card span {
  font-size: 0.82rem;
}

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

.ranking-row {
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ranking-link {
  display: grid;
  grid-template-columns: 58px 86px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}

.ranking-link img {
  width: 86px;
  height: 64px;
  border-radius: 14px;
}

.ranking-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ranking-main strong {
  overflow: hidden;
  color: var(--gray-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-main em,
.ranking-main small {
  overflow: hidden;
  color: var(--gray-500);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-hero {
  padding: 38px 0 56px;
  background: linear-gradient(135deg, var(--pink-100), var(--red-50), var(--orange-100));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
}

.watch-panel,
.detail-info,
.story-card {
  border: 1px solid rgba(252, 231, 243, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.watch-panel {
  overflow: hidden;
  padding: 12px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--gray-900);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  place-items: center;
  border: 0;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  color: var(--pink-500);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  font-size: 2rem;
  transform: scale(1);
  transition: transform 0.2s ease;
}

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

.detail-info {
  padding: 26px;
}

.detail-info h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.detail-lead {
  margin: 18px 0 0;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.detail-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span,
.tag-cloud span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.detail-meta span {
  color: var(--pink-600);
  background: var(--pink-100);
}

.tag-cloud span {
  color: var(--gray-600);
  background: var(--gray-100);
}

.detail-content {
  display: grid;
  gap: 18px;
  padding: 48px 0 18px;
}

.story-card {
  padding: 26px;
}

.story-card h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 1.4rem;
}

.story-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.02rem;
}

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

.movie-facts div {
  padding: 14px;
  border-radius: 16px;
  background: var(--gray-50);
}

.movie-facts dt {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.movie-facts dd {
  margin: 6px 0 0;
  color: var(--gray-900);
  font-weight: 900;
}

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

.empty-state {
  display: none;
  margin: 24px 0 0;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--gray-600);
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.empty-state.is-visible {
  display: block;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--pink-100);
  background: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 28px;
  padding: 38px 0;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--gray-600);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--gray-800);
  font-size: 1rem;
}

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

.footer-links a {
  color: var(--gray-600);
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--pink-600);
}

.footer-bottom {
  padding: 18px 16px 28px;
  border-top: 1px solid var(--pink-100);
  text-align: center;
}

.footer-bottom p + p {
  margin-top: 4px;
  color: #9ca3af;
  font-size: 0.82rem;
}

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

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

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

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

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 70px 0 96px;
  }

  .hero-feature-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .ranking-link {
    grid-template-columns: 42px 66px minmax(0, 1fr);
  }

  .ranking-score {
    grid-column: 3;
  }

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

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

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

  .brand-text {
    font-size: 0.98rem;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

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

  .movie-grid,
  .category-movie-grid,
  .related-grid {
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .rank-card {
    grid-template-columns: 40px 60px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
  }

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

  .detail-info,
  .story-card {
    padding: 20px;
  }

  .big-play {
    width: 66px;
    height: 66px;
    font-size: 1.55rem;
  }
}
