:root {
  --bg: #05070b;
  --panel: rgba(17, 24, 39, 0.76);
  --panel-solid: #111827;
  --panel-soft: rgba(31, 41, 55, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a7b0c0;
  --soft: #d1d5db;
  --accent: #f97316;
  --accent-2: #dc2626;
  --gold: #facc15;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(249, 115, 22, 0.18), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(220, 38, 38, 0.16), transparent 28%),
    linear-gradient(180deg, #111827 0%, #06080d 42%, #000000 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(17, 24, 39, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav a {
  color: #d1d5db;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-link:hover,
.mobile-nav a:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.98), rgba(220, 38, 38, 0.98));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-button,
.mobile-button,
.hero-arrow,
.page-link,
.filter-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: rgba(31, 41, 55, 0.82);
  border-radius: 12px;
  transition: 0.25s ease;
}

.search-button {
  padding: 10px 16px;
  font-weight: 700;
}

.search-button:hover,
.mobile-button:hover,
.hero-arrow:hover,
.page-link:hover,
.filter-pill:hover,
.filter-pill.active {
  border-color: rgba(249, 115, 22, 0.6);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.mobile-button {
  width: 42px;
  height: 42px;
  display: none;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

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

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.search-dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 48px));
  margin: 24px auto;
  padding: 24px;
  overflow: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.96);
  box-shadow: var(--shadow);
}

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

.search-head h2 {
  margin: 0;
  font-size: 28px;
}

.search-head button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
}

.search-input {
  width: 100%;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(0, 0, 0, 0.26);
}

.search-input:focus {
  border-color: rgba(249, 115, 22, 0.72);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-row {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  padding-bottom: 4px;
  overflow-x: auto;
}

.filter-pill {
  flex: 0 0 auto;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
}

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

.search-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(31, 41, 55, 0.76);
  transition: 0.25s ease;
}

.search-card:hover {
  transform: translateY(-2px);
  background: rgba(55, 65, 81, 0.82);
}

.search-card img {
  width: 76px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.search-card strong {
  display: block;
  margin: 4px 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-card small,
.search-empty {
  color: var(--muted);
}

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

.hero-carousel {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-slide img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.86) 38%, rgba(0, 0, 0, 0.26) 72%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(0deg, #000 0%, transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  min-height: 74vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  align-items: center;
  gap: 46px;
  padding: 72px 0;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 8px 13px;
  border: 1px solid rgba(249, 115, 22, 0.58);
  border-radius: 999px;
  color: #fb923c;
  background: rgba(249, 115, 22, 0.14);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.hero-copy p {
  max-width: 720px;
  margin: 0 0 26px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.meta-row,
.detail-meta,
.card-meta,
.rank-text small,
.list-meta {
  color: var(--muted);
}

.meta-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.meta-row span,
.detail-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.75);
}

.rating {
  color: #fff;
  font-weight: 900;
}

.rating::before {
  content: "★";
  color: var(--gold);
  margin-right: 5px;
}

.hero-actions,
.section-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 42px rgba(249, 115, 22, 0.28);
}

.btn-secondary,
.btn-soft {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-card {
  position: relative;
  align-self: center;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-card-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
}

.hero-card-caption strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  width: min(1280px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: 0.25s ease;
}

.hero-dot.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-arrow {
  width: 46px;
  height: 46px;
  font-size: 22px;
}

.main-section {
  padding: 58px 0;
}

.main-section.alt {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.38));
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-more {
  color: #fb923c;
  font-weight: 800;
  white-space: nowrap;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  margin: 0 -16px;
  padding: 4px 16px 18px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.wide-card {
  flex: 0 0 250px;
}

.wide-card-link,
.movie-card-link,
.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.wide-card-link {
  height: 376px;
  background: rgba(31, 41, 55, 0.56);
}

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

.wide-card-link::after,
.poster-frame::after,
.category-mask {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.05) 58%, rgba(0, 0, 0, 0.08));
}

.wide-card-link:hover img,
.movie-card-link:hover img,
.category-tile:hover img {
  transform: scale(1.07);
}

.score-badge,
.type-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.score-badge {
  left: 12px;
  padding: 6px 9px;
  background: rgba(0, 0, 0, 0.62);
}

.score-badge::before {
  content: "★";
  color: var(--gold);
  margin-right: 4px;
}

.type-badge {
  right: 12px;
  padding: 6px 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.wide-card-info {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.wide-card-info h3,
.card-title {
  margin: 0 0 6px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.wide-card-info p,
.card-desc,
.hero-card-caption em {
  color: var(--soft);
  font-style: normal;
}

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

.movie-card-link {
  height: 100%;
  background: rgba(31, 41, 55, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.36);
  background: rgba(31, 41, 55, 0.82);
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
}

.card-body {
  padding: 13px;
}

.card-title {
  font-size: 16px;
  line-height: 1.35;
}

.card-title.small {
  font-size: 14px;
}

.card-meta {
  margin: 0 0 7px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-desc {
  margin: 0;
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.6;
}

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

.category-tile {
  min-height: 210px;
  background: rgba(31, 41, 55, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-content {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.category-content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.category-content em {
  display: block;
  color: #d1d5db;
  font-style: normal;
  line-height: 1.6;
}

.rank-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
}

.rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.rank-item a {
  display: grid;
  grid-template-columns: 52px 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(31, 41, 55, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(55, 65, 81, 0.72);
}

.rank-no {
  color: #fb923c;
  font-size: 22px;
  font-weight: 900;
}

.rank-item img {
  width: 64px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-text {
  min-width: 0;
}

.rank-text strong,
.rank-text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-text strong {
  margin-bottom: 8px;
}

.page-hero {
  padding: 76px 0 32px;
}

.page-hero h1 {
  max-width: 920px;
  margin: 16px 0 12px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 42px 0 0;
}

.page-link,
.page-gap {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 12px;
  font-weight: 800;
}

.page-link.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.page-link.disabled,
.page-gap {
  color: rgba(255, 255, 255, 0.38);
  background: rgba(31, 41, 55, 0.4);
}

.player-top {
  background: #000;
  padding: 30px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 9;
  background: #090909;
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 34px;
  box-shadow: 0 18px 60px rgba(249, 115, 22, 0.34);
}

.player-overlay strong {
  max-width: min(90%, 720px);
  font-size: clamp(24px, 4vw, 42px);
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  padding: 42px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #fb923c;
}

.detail-main h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.content-box,
.info-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(31, 41, 55, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.content-box h2,
.info-box h2,
.related-block h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.content-box p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.9;
}

.content-box .lead {
  margin-bottom: 12px;
  color: #fb923c;
  font-style: italic;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(55, 65, 81, 0.86);
}

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

.side-poster {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.info-box dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.info-box div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #e5e7eb;
}

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

.info-box dd {
  margin: 0;
  text-align: right;
}

.related-block {
  padding: 0 0 72px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 24, 39, 0.92);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
  gap: 34px;
}

.footer-brand p,
.footer-links a {
  color: var(--muted);
}

.footer-brand p {
  max-width: 520px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h3 {
  margin: 0 0 6px;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

  .hero-inner,
  .detail-layout,
  .rank-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .detail-side {
    position: static;
  }
}

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

  .mobile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

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

  .search-results,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, 1280px);
  }

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

  .search-button {
    display: none;
  }

  .hero-carousel,
  .hero-inner {
    min-height: 78vh;
  }

  .hero-inner {
    padding: 48px 0 92px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-controls {
    bottom: 20px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .wide-card {
    flex-basis: 210px;
  }

  .wide-card-link {
    height: 318px;
  }

  .rank-item a {
    grid-template-columns: 44px 58px minmax(0, 1fr);
  }

  .player-top {
    padding: 18px 0;
  }

  .player-shell {
    border-radius: 16px;
  }

  .content-box,
  .info-box {
    padding: 18px;
  }
}
