:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --card: rgba(15, 23, 42, 0.82);
  --card-strong: #111827;
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --cyan-deep: #0891b2;
  --blue: #2563eb;
  --gold: #facc15;
  --orange: #f97316;
  --green: #22c55e;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.12), transparent 34rem),
    radial-gradient(circle at 90% 5%, rgba(37, 99, 235, 0.16), transparent 32rem),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #000 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 72%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 38px rgba(34, 211, 238, 0.28);
}

.brand-text {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: #cbd5e1;
  font-size: 15px;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.top-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 310px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
}

.top-search input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  color: #fff;
  border: 0;
  outline: none;
  background: transparent;
}

.top-search input::placeholder {
  color: #64748b;
}

.top-search button,
.search-panel button {
  padding: 10px 16px;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cyan-deep), var(--blue));
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
}

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

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.62) 44%, rgba(2, 6, 23, 0.14) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.46) 38%, rgba(2, 6, 23, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 18vh;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.46);
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-meta,
.detail-meta,
.hero-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-tags {
  margin-top: 14px;
}

.hero-tags span,
.tag-cloud span {
  padding: 6px 12px;
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.18);
}

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-deep), var(--blue));
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover,
.btn-ghost:hover,
.movie-card:hover,
.wide-card:hover,
.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
}

.btn-ghost,
.section-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  right: calc((100% - min(1180px, calc(100% - 32px))) / 2);
  bottom: 46px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow,
.hero-dot {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 30px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
}

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

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

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

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

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

.movie-card,
.wide-card,
.category-card,
.category-overview-card,
.detail-card,
.related-card,
.side-cover,
.player-card,
.archive-group {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.84));
  box-shadow: var(--shadow);
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover,
.wide-card:hover {
  border-color: rgba(34, 211, 238, 0.72);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

.poster-wrap img,
.wide-thumb img,
.related-item img,
.side-cover img,
.ranking-row img,
.rank-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover img,
.wide-card:hover img,
.related-item:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.card-duration,
.card-play {
  position: absolute;
  z-index: 2;
}

.card-duration {
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
}

.card-play {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 145, 178, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .card-play,
.wide-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-body strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  font-size: 16px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body small,
.movie-card-body span,
.wide-info em,
.wide-info span,
.rank-info em,
.ranking-main small,
.ranking-main em,
.related-item em {
  color: var(--muted);
  font-style: normal;
}

.movie-card-body span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 172px;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.wide-thumb {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.wide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px;
}

.wide-info strong {
  font-size: 19px;
  line-height: 1.35;
}

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

.category-card,
.category-overview-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  min-height: 260px;
  padding: 14px;
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
  border-color: rgba(34, 211, 238, 0.62);
}

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

.category-thumbs img,
.overview-collage img,
.listing-collage img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
  border-radius: 14px;
}

.category-card strong,
.category-overview-card strong {
  font-size: 20px;
}

.category-card span:last-child,
.category-overview-card em {
  color: var(--muted);
  font-style: normal;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
}

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

.rank-item,
.ranking-row,
.related-item {
  display: grid;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.rank-item {
  grid-template-columns: 52px 72px 1fr auto;
  min-height: 96px;
  padding: 10px 14px;
}

.rank-item:hover,
.ranking-row:hover,
.related-item:hover {
  border-color: rgba(34, 211, 238, 0.66);
  background: rgba(30, 41, 59, 0.9);
}

.rank-num,
.ranking-number {
  color: var(--cyan);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.rank-item img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
}

.rank-info {
  display: grid;
  min-width: 0;
}

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

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

.movie-card.compact .movie-card-body span {
  display: none;
}

.page-hero,
.listing-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 34px;
}

.page-hero > div,
.listing-hero {
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.16), transparent 28rem),
    linear-gradient(145deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.72));
  box-shadow: var(--shadow);
}

.page-hero > div {
  padding: clamp(30px, 5vw, 58px);
}

.page-hero h1,
.listing-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero p,
.listing-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
}

.listing-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--cyan);
}

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

.ranking-row {
  grid-template-columns: 72px 92px 1fr auto;
  min-height: 132px;
  padding: 16px;
}

.ranking-row img {
  width: 92px;
  height: 110px;
  border-radius: 16px;
}

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

.ranking-main strong {
  font-size: 22px;
}

.ranking-main em {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 62px;
}

.detail-crumbs {
  margin: 22px 0;
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.62));
}

.player-start span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-deep), var(--blue));
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.48);
  transition: transform 0.2s ease;
}

.player-start:hover span {
  transform: scale(1.08);
}

.player-start.is-hidden {
  display: none;
}

.detail-card,
.related-card,
.side-cover {
  border-radius: 24px;
  padding: 24px;
}

.detail-card h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.detail-card h2,
.related-card h2 {
  margin: 26px 0 12px;
  font-size: 23px;
}

.detail-card p {
  margin: 0 0 12px;
  color: #d1d5db;
  text-align: justify;
}

.detail-lead {
  font-size: 18px;
}

.genre-line {
  display: inline-flex;
  margin: 14px 0 4px;
  padding: 8px 13px;
  border-radius: 12px;
  color: #e0f2fe;
  background: rgba(8, 145, 178, 0.18);
}

.detail-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 20px;
}

.side-cover img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.btn-primary.full {
  width: 100%;
  margin-top: 16px;
}

.related-item {
  grid-template-columns: 92px 1fr;
  padding: 9px;
}

.related-item img {
  width: 92px;
  height: 72px;
  border-radius: 12px;
}

.related-item span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.search-panel {
  display: flex;
  overflow: hidden;
  width: min(680px, 100%);
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.66);
}

.search-panel input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
}

.search-results .section-heading {
  margin-top: 0;
}

.archive-section {
  display: grid;
  gap: 22px;
}

.archive-group {
  border-radius: 24px;
  padding: 22px;
}

.archive-group h2 {
  margin: 0 0 18px;
  color: var(--cyan);
}

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

.archive-links a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.archive-links a:hover {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.55);
}

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

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.8);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  color: var(--muted);
}

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: #64748b;
}

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

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

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

  .detail-side {
    position: static;
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(34, 211, 238, 0.1);
  }

  .top-search {
    order: 5;
    width: 100%;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-controls {
    right: 16px;
    bottom: 24px;
  }

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

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

  .wide-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-template-columns: 40% 1fr;
  }

  .ranking-row {
    grid-template-columns: 48px 74px 1fr;
  }

  .ranking-row img {
    width: 74px;
    height: 88px;
  }

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

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

  .side-cover {
    display: none;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-meta span,
  .detail-meta span {
    min-height: 30px;
    font-size: 13px;
  }

  .movie-grid,
  .featured-grid,
  .category-movie-grid,
  .mini-grid,
  .archive-links {
    gap: 12px;
  }

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

  .movie-card-body strong {
    min-height: 42px;
    font-size: 15px;
  }

  .rank-item {
    grid-template-columns: 42px 60px 1fr;
  }

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

  .rank-item img {
    width: 60px;
    height: 66px;
  }

  .search-panel {
    border-radius: 18px;
  }
}
