:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-solid: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(168, 85, 247, 0.24);
  --purple: #7e22ce;
  --purple-soft: rgba(126, 34, 206, 0.28);
  --amber: #fbbf24;
  --amber-soft: rgba(251, 191, 36, 0.18);
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(126, 34, 206, 0.28), transparent 34rem),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.16), transparent 24rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber), #f97316 48%, var(--purple));
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(251, 191, 36, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong,
.footer-logo {
  background: linear-gradient(90deg, #fde68a, #fbbf24, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fbbf24;
  background: var(--amber-soft);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  width: min(290px, 28vw);
  padding: 4px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.header-search input,
.quick-search input,
.local-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

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

.header-search button,
.quick-search button {
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  font-weight: 900;
  white-space: nowrap;
}

.header-search button {
  padding: 8px 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.8);
}

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

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 48px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

.hero-image {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.6), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow);
}

.hero-image::after,
.detail-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.84));
}

.hero-image img,
.detail-bg img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(88, 28, 135, 0.48));
  box-shadow: var(--shadow);
}

.eyebrow,
.section-head span,
.search-panel span,
.rank-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.section-head p {
  color: #cbd5e1;
}

.hero-copy p {
  margin: 0;
  font-size: 18px;
}

.hero-tags,
.tag-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.1);
  color: #fde68a;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span,
.detail-meta span {
  padding: 8px 12px;
}

.tag-row span {
  padding: 5px 9px;
}

.hero-actions,
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.28);
}

.btn-ghost {
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: rgba(15, 23, 42, 0.66);
}

.hero-controls {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 1px solid var(--line);
  color: #fbbf24;
  background: rgba(15, 23, 42, 0.82);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

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

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

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

.quick-search {
  margin-top: -46px;
  position: relative;
  z-index: 9;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 3vw, 34px);
}

.quick-search form,
.local-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.74);
}

.quick-search input,
.local-search input {
  padding: 12px 16px;
}

.quick-search button {
  padding: 0 22px;
}

.section {
  padding: 72px 0 0;
}

.section-head {
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head h2,
.rank-title h2,
.player-section h2,
.content-block h2,
.side-card h2,
.text-card h2 {
  margin: 6px 0 0;
  color: #fff7ed;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.section-head p {
  max-width: 760px;
  margin: 8px 0 0;
}

.section-head a,
.rank-more {
  color: #fbbf24;
  font-weight: 900;
}

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

.category-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(126, 34, 206, 0.32), rgba(15, 23, 42, 0.86)),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.22), transparent 60%);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.rank-item:hover,
.text-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.45);
}

.category-card strong {
  color: #fde68a;
  font-size: 22px;
}

.category-card span {
  color: #cbd5e1;
  font-size: 14px;
}

.category-card em {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.category-card em a {
  color: #94a3b8;
  font-size: 13px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.72), rgba(2, 6, 23, 0.9));
}

.poster-wrap img,
.rank-cover img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.movie-card:hover .poster-wrap img,
.rank-item:hover .rank-cover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.poster-year {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #111827;
  background: #fbbf24;
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: rgba(251, 191, 36, 0.92);
  font-size: 14px;
}

.card-body {
  padding: 14px;
}

.card-body h2 {
  margin: 0;
  color: #fff7ed;
  font-size: 16px;
  line-height: 1.32;
}

.card-body h2 a:hover,
.rank-content h2 a:hover,
.related-links a:hover {
  color: #fbbf24;
}

.card-meta {
  margin: 8px 0;
  color: #94a3b8;
  font-size: 12px;
}

.card-desc {
  margin: 0 0 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.rank-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.82);
}

.rank-panel ol {
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.rank-panel li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-panel li span {
  color: #fbbf24;
  font-weight: 900;
}

.rank-panel li a {
  color: #f8fafc;
  font-weight: 800;
}

.rank-panel li em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  padding: 92px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(126, 34, 206, 0.26), transparent 34rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0));
}

.compact-hero h1 {
  margin: 12px 0;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.compact-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.78);
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #111827;
  background: #fbbf24;
}

.local-search {
  margin-bottom: 24px;
}

.large-search {
  max-width: 760px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.74);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.72), rgba(2, 6, 23, 0.9));
}

.rank-cover strong {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #111827;
  background: #fbbf24;
}

.rank-content h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
}

.rank-content p {
  color: #cbd5e1;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  filter: blur(2px);
}

.detail-bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), #020617 96%);
}

.detail-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  min-height: 560px;
  padding: 110px 0 56px;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.72), rgba(2, 6, 23, 0.9));
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: #fbbf24;
}

.detail-intro h1 {
  max-width: 940px;
  margin: 16px 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.detail-line {
  max-width: 820px;
  color: #e2e8f0;
  font-size: 20px;
}

.detail-tags {
  margin: 18px 0 24px;
}

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

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.player-section,
.content-block,
.side-card,
.text-card {
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.player-section,
.content-block,
.side-card {
  padding: 22px;
}

.player-section h2,
.content-block h2,
.side-card h2,
.text-card h2 {
  font-size: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 22px;
  background: #000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 16px;
  border: 0;
  color: #fff7ed;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.26), rgba(2, 6, 23, 0.9));
  text-align: center;
}

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

.play-ring {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: #fbbf24;
  box-shadow: 0 0 0 16px rgba(251, 191, 36, 0.16);
  font-size: 28px;
}

.player-cover strong {
  max-width: 80%;
  font-size: 22px;
}

.content-block p,
.text-card p,
.side-card p {
  color: #dbeafe;
}

.content-block p {
  font-size: 17px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 18px 0 0;
}

.side-card dt {
  color: #94a3b8;
}

.side-card dd {
  margin: 0;
  color: #f8fafc;
}

.related-links {
  display: grid;
  gap: 12px;
}

.related-links a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
  font-weight: 800;
}

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

.text-card {
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.98));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 28px;
  padding: 46px 0;
}

.footer-logo {
  font-size: 26px;
}

.footer-brand p,
.site-footer p,
.site-footer a,
.site-footer li {
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fde68a;
  font-size: 16px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fbbf24;
}

.back-top {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(15, 23, 42, 0.88);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
  color: #64748b;
  font-size: 13px;
}

.is-hidden-by-filter {
  display: none !important;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .header-search {
    order: 3;
    width: 100%;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    text-align: center;
  }

  .hero-slide,
  .search-panel,
  .split-layout,
  .detail-layout,
  .detail-hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-stage {
    min-height: 820px;
  }

  .hero-slide {
    align-content: center;
    gap: 22px;
  }

  .hero-image {
    min-height: 360px;
  }

  .rank-panel {
    position: static;
  }

  .detail-hero-inner {
    align-items: center;
  }

  .detail-poster {
    width: min(280px, 70vw);
  }

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

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

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

  .header-inner {
    gap: 10px;
  }

  .brand-text em {
    display: none;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .header-search {
    grid-column: 1 / -1;
  }

  .hero,
  .hero-stage {
    min-height: 760px;
  }

  .hero-slide {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .quick-search {
    margin-top: 18px;
  }

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

  .section {
    padding-top: 50px;
  }

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

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

  .detail-intro h1 {
    font-size: 40px;
  }

  .footer-grid {
    padding: 34px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .movie-grid,
  .text-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 12px;
  }

  .card-desc,
  .rank-content p {
    display: none;
  }
}
