:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(30, 41, 59, 0.88);
  --line: rgba(6, 182, 212, 0.22);
  --line-soft: rgba(6, 182, 212, 0.12);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --blue: #2563eb;
  --orange: #fb923c;
  --yellow: #facc15;
  --purple: #c084fc;
  --green: #4ade80;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --radius: 18px;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.32);
  color: white;
  padding-left: 3px;
}

.brand-copy strong,
.brand-copy em {
  display: block;
}

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

.brand-copy em {
  margin-top: 2px;
  color: rgba(34, 211, 238, 0.72);
  font-size: 12px;
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.page-search input,
.search-band input,
.filter-line input,
.filter-line select {
  min-width: 0;
  color: var(--text);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.header-search input {
  width: 170px;
  padding: 10px 14px;
}

.header-search button,
.page-search button,
.search-band button,
.primary-btn,
.ghost-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.18);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cyan);
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: linear-gradient(180deg, #0f172a 0%, rgba(15, 23, 42, 0.5) 48%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, cyan 2px, cyan 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, cyan 2px, cyan 4px);
  background-size: 50px 50px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 46px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(2px);
  transform: scale(1.04);
}

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

.hero-label,
.section-kicker,
.detail-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 14px 0 0;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.95;
  background: linear-gradient(90deg, var(--cyan), #3b82f6, var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
  animation: softPulse 2.8s ease-in-out infinite;
}

.hero-content h2 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}

.hero-content p {
  max-width: 660px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-actions,
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ghost-btn {
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-stats span {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  padding-left: 16px;
}

.hero-stats span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 14px var(--cyan);
}

.hero-poster {
  position: relative;
  z-index: 2;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow);
}

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

.hero-poster span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.88);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
  padding-left: 4px;
  box-shadow: 0 0 38px rgba(6, 182, 212, 0.45);
}

.hero-poster:hover img {
  transform: scale(1.05);
}

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

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

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

.search-band {
  width: min(100% - 32px, 860px);
  margin: -34px auto 70px;
  position: relative;
  z-index: 4;
}

.search-band form,
.page-search {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.search-band input,
.page-search input {
  flex: 1;
  padding: 13px 18px;
}

.content-section,
.page-main,
.detail-main {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.content-section {
  margin-bottom: 76px;
}

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

.section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 4vw, 38px);
}

.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  min-width: 80px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.45), transparent);
}

.section-more {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
}

.section-orange .section-kicker {
  color: var(--orange);
}

.section-yellow .section-kicker {
  color: var(--yellow);
}

.section-purple .section-kicker {
  color: var(--purple);
}

.section-green .section-kicker {
  color: var(--green);
}

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

.movie-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.44);
  box-shadow: 0 18px 50px rgba(6, 182, 212, 0.11);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

.movie-card-large .poster-wrap {
  aspect-ratio: 21 / 9;
}

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

.movie-card:hover img {
  transform: scale(1.05);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.82));
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.9);
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding-left: 4px;
}

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

.duration-badge,
.genre-badge {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
}

.duration-badge {
  top: 10px;
  right: 10px;
  color: var(--cyan);
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid var(--line);
}

.genre-badge {
  left: 10px;
  bottom: 10px;
  color: white;
  background: rgba(251, 146, 60, 0.9);
}

.card-copy {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-copy strong {
  color: white;
  font-size: 17px;
  line-height: 1.35;
}

.card-copy em {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: 12px;
}

.card-tags {
  color: rgba(34, 211, 238, 0.74);
}

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

.category-tile {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img {
  opacity: 0.52;
  transform: scale(1.06);
}

.category-tile span {
  position: absolute;
  inset: auto 16px 16px 16px;
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  font-size: 20px;
}

.category-tile em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.ranking-box {
  position: sticky;
  top: 94px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 38px 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.42);
}

.rank-row img {
  width: 64px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

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

.rank-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row em {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-number {
  color: var(--yellow);
  font-weight: 900;
}

.rank-row b {
  color: var(--yellow);
  font-size: 13px;
}

.page-main,
.detail-main {
  padding-top: 34px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.16), transparent 38%),
    rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 6vw, 58px);
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.category-overview,
.category-block {
  display: grid;
  gap: 34px;
}

.category-block {
  margin-bottom: 42px;
}

.category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.category-heading strong,
.category-heading em {
  display: block;
}

.category-heading strong {
  font-size: 24px;
}

.category-heading em {
  color: var(--muted);
  font-style: normal;
}

.category-heading b {
  color: var(--cyan);
}

.filter-panel {
  margin-bottom: 70px;
}

.filter-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
}

.filter-line input,
.filter-line select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
}

.empty-state {
  display: none;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 72px 150px minmax(0, 1fr) 90px;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ranking-card:hover {
  transform: translateX(4px);
  border-color: var(--line);
}

.ranking-card img {
  width: 150px;
  height: 86px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-index,
.ranking-score {
  color: var(--yellow);
  font-weight: 900;
  font-size: 20px;
}

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

.ranking-info strong {
  font-size: 18px;
}

.ranking-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-info b {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 13px;
}

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

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

.player-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 40px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.78));
  cursor: pointer;
}

.player-overlay span {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.9);
  font-size: 38px;
  padding-left: 6px;
  box-shadow: 0 0 46px rgba(6, 182, 212, 0.48);
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.detail-intro {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
}

.detail-intro > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  object-fit: cover;
}

.detail-intro h1 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.detail-intro p {
  margin: 0;
  color: var(--muted);
}

.detail-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.detail-meta span,
.tag-list span {
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.5);
  font-size: 13px;
}

.tag-list span {
  color: var(--cyan);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-bottom: 76px;
}

.detail-content article,
.detail-content aside {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.detail-content h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 24px;
}

.detail-content p {
  margin: 0 0 28px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.9;
}

.detail-content dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
}

.detail-content dt {
  color: var(--muted-2);
}

.detail-content dd {
  margin: 0;
  color: #cbd5e1;
}

.detail-content dd a {
  color: var(--cyan);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.92);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-inner h2 {
  margin: 0 0 10px;
  color: var(--cyan);
}

.footer-inner p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.footer-links,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 13px;
}

@keyframes softPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.82;
  }
}

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

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

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

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

  .ranking-box {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

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

  .hero {
    min-height: 88vh;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 86px 0 70px;
  }

  .hero-poster {
    max-height: 260px;
  }

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

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

  .ranking-card {
    grid-template-columns: 48px 92px minmax(0, 1fr);
  }

  .ranking-card img {
    width: 92px;
    height: 58px;
  }

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

  .page-hero {
    padding: 32px 22px;
  }
}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy em {
    display: none;
  }

  .hero-content p,
  .page-hero p {
    font-size: 15px;
  }

  .hero-actions,
  .hero-stats,
  .search-band form,
  .page-search {
    flex-direction: column;
    align-items: stretch;
  }

  .movie-grid,
  .category-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head::after {
    width: 100%;
  }

  .rank-row {
    grid-template-columns: 32px 58px minmax(0, 1fr);
  }

  .rank-row b {
    display: none;
  }
}
