:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --border: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --amber: #f59e0b;
  --orange: #ea580c;
  --green: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1200px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(234, 88, 12, 0.12), transparent 32rem),
    linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.32);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-tagline {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: #fbbf24;
  background: rgba(51, 65, 85, 0.68);
  transform: translateY(-1px);
}

.top-search,
.mobile-search,
.wide-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--text);
  background: rgba(15, 23, 42, 0.75);
  border-radius: 12px;
  outline: none;
}

.top-search input {
  width: 230px;
  padding: 10px 12px;
}

.top-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  border-radius: 12px;
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 5px auto;
  background: #e2e8f0;
}

.mobile-panel {
  display: none;
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-search {
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 12px;
}

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

.mobile-link {
  padding: 10px 12px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.65);
  border-radius: 12px;
}

.hero {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.75s ease;
  display: flex;
  align-items: flex-end;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-copy {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 0 0 76px;
  position: relative;
  z-index: 2;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(234, 88, 12, 0.95));
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.18);
}

.hero h1 {
  max-width: 860px;
  margin: 22px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-meta span {
  color: #f8fafc;
  font-size: 0.92rem;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.42);
}

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

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.25);
}

.ghost-btn,
.section-more {
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(15, 23, 42, 0.65);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.28);
}

.full-btn {
  width: 100%;
}

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

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

.hero-dot.is-active {
  background: #fbbf24;
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 72px;
  z-index: 4;
  width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.panel-title {
  display: block;
  color: #fbbf24;
  font-weight: 900;
  margin-bottom: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: rgba(51, 65, 85, 0.65);
  transform: translateX(2px);
}

.compact-card img {
  width: 54px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #111827;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.35;
}

.compact-card em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.quick-search-block {
  padding: 32px 0 4px;
}

.search-glass {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.search-glass h2,
.page-hero h1,
.section-heading h2,
.rank-card h2,
.detail-copy h1,
.detail-copy h2,
.info-panel h2 {
  margin: 12px 0 0;
}

.wide-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
}

.wide-search button {
  padding: 14px 22px;
}

.content-section {
  padding: 54px 0;
}

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

.section-heading h2,
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-heading p,
.page-hero p {
  color: var(--muted);
  line-height: 1.75;
}

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

.category-tile,
.category-overview-card,
.rank-card,
.info-panel,
.detail-copy,
.filter-panel,
.search-box-page {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.category-tile {
  min-height: 160px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: auto -42px -52px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
}

.category-tile span {
  font-size: 1.25rem;
  font-weight: 900;
}

.category-tile strong {
  font-size: 2.2rem;
  color: #fbbf24;
}

.category-tile em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

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

.movie-card {
  min-width: 0;
}

.movie-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-link:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.52);
  box-shadow: 0 24px 72px rgba(245, 158, 11, 0.14);
}

.poster-frame {
  display: block;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #020617);
}

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

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

.year-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 9px;
  border-radius: 999px;
}

.year-badge {
  right: 10px;
  top: 10px;
  background: rgba(2, 6, 23, 0.78);
}

.type-badge {
  left: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.movie-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-body strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.movie-desc {
  min-height: 3.2em;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  color: var(--muted-2);
  font-size: 0.82rem;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.rank-card {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.rank-card ol,
.ranking-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.rank-card li a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-card li span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #fff;
  font-weight: 900;
  background: rgba(245, 158, 11, 0.88);
}

.rank-card li strong {
  display: block;
  color: #fff;
  line-height: 1.4;
}

.rank-card li em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.sub-page {
  padding-bottom: 40px;
}

.page-hero {
  padding: 56px 0 30px;
}

.page-hero p {
  max-width: 760px;
}

.breadcrumb,
.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  margin-top: 18px;
}

.breadcrumb a,
.detail-breadcrumb a {
  color: #fbbf24;
}

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

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

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

.category-overview-head h2 {
  margin: 12px 0 8px;
  font-size: 1.55rem;
}

.category-overview-head p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 170px 190px;
  gap: 12px;
  padding: 16px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 13px;
}

.ranking-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.ranking-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
}

.ranking-hero p {
  max-width: 720px;
  color: #dbeafe;
  line-height: 1.75;
  margin-bottom: 24px;
}

.ranking-row {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  margin-bottom: 12px;
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 54px 72px 1fr 150px;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
}

.rank-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.ranking-row img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  font-size: 1.05rem;
}

.rank-info em {
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-meta {
  color: var(--muted);
  text-align: right;
}

.search-box-page {
  padding: 18px;
}

.detail-page {
  padding: 28px 0 40px;
}

.detail-breadcrumb {
  margin-bottom: 22px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 158, 11, 0.24);
}

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

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.12), rgba(2, 6, 23, 0.72));
  transition: opacity 0.2s ease, visibility 0.2s ease;
  cursor: pointer;
}

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

.player-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.35);
}

.play-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.player-layer p {
  margin: 0;
  color: #e2e8f0;
}

.detail-copy {
  margin-top: 22px;
  padding: 24px;
}

.title-line h1 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.lead {
  color: #dbeafe;
  font-size: 1.1rem;
  line-height: 1.8;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0;
}

.detail-tags span {
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.26);
  background: rgba(245, 158, 11, 0.1);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.detail-copy section {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 20px;
  margin-top: 20px;
}

.detail-copy p {
  color: #cbd5e1;
  line-height: 1.9;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  background: #111827;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.info-panel {
  padding: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.info-row span {
  color: var(--muted);
}

.info-row strong {
  text-align: right;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), #020617);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.3fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-col a {
  color: var(--muted);
  line-height: 1.75;
}

.footer-col h2 {
  font-size: 1rem;
  margin: 0 0 12px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 7px 0;
}

.footer-cats ul {
  columns: 2;
}

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: var(--muted-2);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.9rem;
}

.is-hidden-card {
  display: none;
}

@media (max-width: 1180px) {
  .top-search {
    display: none;
  }

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

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

  .hero-panel {
    display: none;
  }

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

  .rank-card,
  .detail-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .search-glass,
  .filter-panel,
  .footer-inner,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-row a {
    grid-template-columns: 42px 64px 1fr;
  }

  .rank-meta {
    grid-column: 3;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-copy {
    padding-bottom: 70px;
  }

  .hero-meta span {
    font-size: 0.78rem;
  }

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

  .section-heading,
  .category-overview-head {
    display: block;
  }

  .section-more,
  .category-overview-head .ghost-btn {
    margin-top: 14px;
  }

  .wide-search {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .ranking-row a {
    grid-template-columns: 38px 58px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .ranking-row img {
    width: 58px;
    height: 78px;
  }
}
