:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: #1e293b;
  --panel-2: #243044;
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --orange: #f97316;
  --green: #22c55e;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(2, 8, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 2%, rgba(37, 99, 235, 0.24), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(34, 211, 238, 0.18), transparent 38rem),
    linear-gradient(180deg, #0f172a 0%, #111827 48%, #0f172a 100%);
  color: var(--text);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.nav-wrap {
  max-width: 1220px;
  margin: 0 auto;
  height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

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

.brand-name {
  font-size: 1.2rem;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.12);
}

.nav-link:hover,
.mobile-link:hover {
  transform: translateY(-1px);
}

.site-search,
.mobile-search,
.search-hero-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-search input,
.mobile-search input,
.search-hero-form input,
.page-filter input {
  width: 250px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-search input:focus,
.mobile-search input:focus,
.search-hero-form input:focus,
.page-filter input:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.site-search button,
.mobile-search button,
.search-hero-form button,
.primary-button,
.ghost-button,
.hero-button,
.player-trigger,
.page-filter button {
  border: 0;
  color: #ffffff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.site-search button,
.mobile-search button,
.search-hero-form button,
.page-filter button {
  padding: 11px 17px;
}

.primary-button,
.ghost-button,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
}

.ghost-button {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: none;
}

.site-search button:hover,
.mobile-search button:hover,
.search-hero-form button:hover,
.primary-button:hover,
.ghost-button:hover,
.hero-button:hover,
.player-trigger:hover,
.page-filter button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.96);
}

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

.mobile-search input {
  width: 100%;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.main-shell,
.page-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 54px 22px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-slide.is-active .hero-bg {
  animation: heroDrift 8s ease forwards;
}

@keyframes heroDrift {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1.01);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.70) 45%, rgba(2, 6, 23, 0.14) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.92) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 22px;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker,
.card-meta a,
.category-pill,
.rank-label {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(34, 211, 238, 0.92));
  border-radius: 999px;
  font-weight: 800;
}

.hero-kicker {
  padding: 9px 16px;
  margin-bottom: 18px;
  box-shadow: 0 16px 32px rgba(34, 211, 238, 0.2);
}

.hero-copy h1,
.hero-copy h2,
.page-title h1,
.detail-title h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy h2 {
  margin-top: 14px;
}

.hero-copy p {
  max-width: 670px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.8;
}

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

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(2, 6, 23, 0.52);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.82);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.section-block {
  margin-bottom: 70px;
}

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

.section-head h2,
.category-card h2,
.footer-grid h2,
.detail-panel h2,
.side-panel h2 {
  margin: 0;
  color: #ffffff;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.section-head p,
.page-title p,
.category-card p,
.detail-panel p,
.footer-grid p {
  color: var(--muted-2);
  line-height: 1.8;
}

.section-more {
  flex: 0 0 auto;
  color: var(--cyan);
  font-weight: 800;
}

.section-more:hover {
  color: #a5f3fc;
}

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

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

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

.movie-card,
.category-card,
.detail-panel,
.side-panel,
.search-box,
.stat-card,
.ranking-row {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.22);
}

.movie-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.48);
  box-shadow: var(--shadow);
}

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

.movie-card-large .poster-link {
  aspect-ratio: 16 / 10;
}

.movie-card-compact .poster-link {
  aspect-ratio: 3 / 4;
}

.poster-link img,
.mini-poster img,
.detail-cover img,
.player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img,
.mini-poster img,
.detail-cover img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-link img,
.mini-card:hover .mini-poster img,
.detail-cover:hover img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.05);
}

.play-chip,
.rank-badge,
.mini-rank {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(10px);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 8px 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.88rem;
  margin-bottom: 11px;
}

.card-meta a {
  padding: 5px 10px;
  font-size: 0.78rem;
}

.card-body h2 {
  min-height: 3.1em;
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.card-body h2 a:hover,
.mini-title:hover,
.breadcrumb a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.card-body p {
  min-height: 4.8em;
  margin: 0 0 14px;
  color: var(--muted-2);
  line-height: 1.6;
  font-size: 0.93rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.detail-tags span {
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.58);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.horizontal-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
}

.horizontal-strip .movie-card {
  scroll-snap-align: start;
}

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

.category-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 70%);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.48);
}

.category-card h2 {
  font-size: 1.36rem;
}

.category-pill {
  width: max-content;
  padding: 8px 12px;
  margin-top: 18px;
}

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

.stat-card {
  padding: 28px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.stat-card span {
  color: var(--muted-2);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.breadcrumb strong {
  color: #ffffff;
  font-weight: 700;
}

.page-title {
  max-width: 860px;
  margin-bottom: 36px;
}

.page-title h1 {
  margin-bottom: 16px;
}

.page-title p {
  font-size: 1.08rem;
}

.page-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.54);
  border-radius: 22px;
}

.page-filter input {
  flex: 1 1 260px;
  width: auto;
}

.filter-status {
  color: var(--muted-2);
}

.search-box {
  padding: 30px;
  margin-bottom: 32px;
}

.search-box h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.055em;
}

.search-box p {
  color: var(--muted-2);
  line-height: 1.8;
}

.search-hero-form {
  max-width: 720px;
  margin-top: 22px;
}

.search-hero-form input {
  flex: 1 1 auto;
  width: auto;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.player-video {
  position: absolute;
  inset: 0;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.22)),
    rgba(2, 6, 23, 0.25);
  box-shadow: none;
  z-index: 4;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-button-core {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.35);
}

.player-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #ffffff;
  font-size: 1.25rem;
}

.detail-title {
  margin: 28px 0 22px;
}

.detail-title h1 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--muted);
}

.detail-meta span,
.detail-meta a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

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

.detail-panel {
  padding: 26px;
  margin-top: 24px;
}

.detail-panel h2 {
  margin-bottom: 14px;
}

.detail-panel p {
  margin: 0 0 16px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.side-panel {
  position: sticky;
  top: 94px;
  padding: 20px;
}

.side-panel h2 {
  margin-bottom: 18px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.54);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.mini-card:hover {
  background: rgba(30, 41, 59, 0.86);
  transform: translateX(3px);
}

.mini-poster {
  position: relative;
  height: 76px;
  overflow: hidden;
  border-radius: 12px;
  background: #020617;
}

.mini-rank {
  left: 6px;
  top: 6px;
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #111827;
  background: linear-gradient(135deg, #f97316, #fde047);
  font-size: 0.78rem;
}

.mini-title {
  display: block;
  margin-bottom: 4px;
  font-weight: 850;
  line-height: 1.4;
}

.mini-card p {
  margin: 0 0 4px;
  color: var(--muted-2);
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card span {
  color: var(--muted-2);
  font-size: 0.82rem;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 120px;
  gap: 20px;
  align-items: center;
  padding: 16px;
}

.rank-label {
  width: 54px;
  height: 54px;
  justify-content: center;
  font-size: 1.16rem;
}

.ranking-row h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.ranking-row p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.7;
}

.ranking-row .score {
  text-align: right;
  color: var(--cyan);
  font-weight: 900;
}

.empty-state {
  display: none;
  padding: 46px 20px;
  text-align: center;
  color: var(--muted-2);
  border: 1px dashed rgba(148, 163, 184, 0.24);
  border-radius: 22px;
}

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

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

.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
  font-size: 1.32rem;
  color: var(--cyan);
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted-2);
}

.footer-bottom {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 22px 28px;
  color: var(--muted-2);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

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

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

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

  .side-panel {
    position: static;
  }
}

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

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

  .nav-wrap {
    height: 66px;
  }

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

  .hero-inner {
    padding: 64px 22px 92px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .ranking-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .ranking-row .score {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1rem;
  }

  .main-shell,
  .page-shell {
    padding: 38px 16px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .page-title h1,
  .detail-title h1 {
    letter-spacing: -0.045em;
  }

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.search-grid,
  .category-grid,
  .stats-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .search-hero-form input,
  .page-filter input {
    width: 100%;
  }

  .mini-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .card-body h2,
  .card-body p {
    min-height: auto;
  }
}
