:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(14, 165, 233, 0.18);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 249, 255, 0.72) 45%, rgba(255, 251, 235, 0.82) 100%);
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select {
  font: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(240, 249, 255, 0.95), rgba(255, 251, 235, 0.95), rgba(240, 249, 255, 0.95));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.12);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark,
.footer-logo span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-400), var(--amber-400));
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.26);
}
.brand:hover .brand-mark {
  transform: scale(1.07) rotate(-2deg);
}
.brand-mark {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.brand-text strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--sky-600), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 14px;
  color: #374151;
  font-weight: 700;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}
.nav-link:hover,
.nav-link.active,
.mobile-link:hover {
  background: linear-gradient(90deg, var(--sky-100), var(--amber-100));
  color: #0f172a;
  transform: translateY(-1px);
}
.header-search,
.mobile-search,
.wide-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-search input,
.mobile-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.header-search input {
  width: 220px;
}
.header-search button,
.mobile-search button,
.wide-search button,
.primary-btn,
.ghost-btn,
.filter-panel select {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 800;
}
.header-search button,
.mobile-search button,
.wide-search button,
.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.header-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(245, 158, 11, 0.26);
}
.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--sky-100);
  cursor: pointer;
  font-size: 22px;
}
.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
}
.mobile-nav.open {
  display: grid;
  gap: 10px;
}
.hero-carousel {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08);
}
.hero-slide.active > img {
  animation: slowZoom 8s ease forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.56), rgba(2, 6, 23, 0.18));
}
.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 56px;
}
.hero-copy {
  max-width: 760px;
  color: #ffffff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow.dark {
  color: var(--sky-700, #0369a1);
  background: linear-gradient(90deg, var(--sky-100), var(--amber-100));
}
.eyebrow.link:hover {
  transform: translateY(-1px);
}
.hero-copy h1 {
  margin: 24px 0 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.hero-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.9;
}
.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tags {
  margin-top: 24px;
}
.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
}
.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.tag-row span {
  color: #475569;
  background: linear-gradient(90deg, var(--sky-100), var(--amber-100));
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}
.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 0.28s ease, background 0.28s ease;
}
.hero-dot.active {
  width: 54px;
  background: linear-gradient(90deg, var(--sky-400), var(--amber-400));
}
.section-wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}
.section-wrap.compact {
  padding: 48px 0;
}
.quick-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 36px;
  align-items: center;
}
.quick-search h2,
.section-heading h2,
.page-hero h1,
.detail-intro h1 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.quick-search p,
.page-hero p,
.detail-intro .lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}
.wide-search {
  border-radius: 999px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}
.wide-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-heading.tight {
  align-items: start;
  flex-direction: column;
  gap: 0;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading a {
  color: var(--sky-600);
  font-weight: 900;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.latest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.movie-card {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}
.card-link {
  display: block;
  height: 100%;
}
.poster-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #fef3c7);
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.movie-card:hover .poster-frame img {
  transform: scale(1.08);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 6, 23, 0.72));
  pointer-events: none;
}
.poster-shine {
  position: absolute;
  inset: -40% auto auto -60%;
  width: 60%;
  height: 180%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}
.movie-card:hover .poster-shine {
  left: 120%;
}
.type-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}
.type-badge {
  top: 12px;
  left: 12px;
  background: rgba(14, 165, 233, 0.92);
}
.rank-badge {
  top: 12px;
  right: 12px;
  background: rgba(245, 158, 11, 0.96);
}
.card-content {
  padding: 18px;
}
.card-content h2,
.card-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.card-content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 14px;
  color: #64748b;
  font-size: 13px;
}
.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: #cbd5e1;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.category-grid.wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.86));
  border: 1px solid rgba(14, 165, 233, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.category-tile:hover {
  transform: translateY(-5px);
}
.category-tile,
.category-orb {
  transition: transform 0.3s ease;
}
.category-orb {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--sky-400), var(--amber-400));
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.22);
}
.category-tile:hover .category-orb {
  transform: scale(1.08) rotate(-4deg);
}
.category-tile h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.category-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.category-samples a {
  color: var(--sky-600);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.ranking-panel,
.latest-panel,
.player-card,
.content-card,
.related-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: var(--shadow);
}
.ranking-panel,
.latest-panel {
  padding: 24px;
}
.rank-list,
.related-list {
  display: grid;
  gap: 16px;
}
.movie-card.horizontal .card-link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}
.movie-card.horizontal .poster-frame {
  aspect-ratio: 2 / 3;
  height: 100%;
}
.movie-card.horizontal .card-content {
  padding: 14px;
}
.movie-card.horizontal .card-content h3,
.movie-card.horizontal .card-content h2 {
  font-size: 16px;
}
.movie-card.horizontal .tag-row {
  display: none;
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.22), transparent 35%), radial-gradient(circle at 88% 12%, rgba(251, 191, 36, 0.24), transparent 34%), linear-gradient(180deg, #ffffff, rgba(240, 249, 255, 0.72));
}
.page-hero.rank-hero {
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.28), transparent 34%), linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(255, 251, 235, 0.86));
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}
.breadcrumbs a:hover {
  color: var(--sky-600);
}
.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px;
  gap: 12px;
  padding: 14px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 165, 233, 0.14);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}
.no-results {
  grid-column: 1 / -1;
  padding: 44px;
  text-align: center;
  border-radius: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(14, 165, 233, 0.24);
}
.detail-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 72% 18%, rgba(251, 191, 36, 0.26), transparent 34%), radial-gradient(circle at 12% 22%, rgba(56, 189, 248, 0.24), transparent 36%), linear-gradient(180deg, #ffffff, rgba(240, 249, 255, 0.76));
}
.detail-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}
.detail-cover {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.2);
  transform: rotate(-1.5deg);
}
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-intro .lead {
  max-width: 780px;
  font-size: 19px;
}
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.detail-info-grid div {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.12);
}
.detail-info-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}
.detail-info-grid strong {
  display: block;
  font-size: 15px;
}
.detail-tags span {
  color: #0f172a;
  background: linear-gradient(90deg, var(--sky-100), var(--amber-100));
  border-color: transparent;
}
.player-section {
  padding-top: 42px;
}
.player-card {
  overflow: hidden;
}
.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
  overflow: hidden;
}
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.56));
  cursor: pointer;
}
.play-overlay span {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: #ffffff;
  font-size: 36px;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}
.video-shell.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}
.play-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.player-copy {
  padding: 24px;
}
.player-copy h2,
.content-card h2,
.related-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
}
.player-copy p,
.content-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}
.detail-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}
.content-card,
.related-card {
  padding: 28px;
}
.content-card h2:not(:first-child) {
  margin-top: 28px;
}
.site-footer {
  margin-top: 40px;
  padding: 54px 24px 26px;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.96), rgba(255, 251, 235, 0.96));
  border-top: 1px solid rgba(14, 165, 233, 0.14);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}
.footer-brand p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: start;
}
.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  font-weight: 800;
}
.footer-bottom {
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 20px;
  color: #64748b;
  border-top: 1px solid rgba(14, 165, 233, 0.14);
}
@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 1180px) {
  .header-search {
    display: none;
  }
  .movie-grid,
  .latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-grid,
  .category-grid.wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .split-section,
  .detail-content-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .header-inner {
    padding: 12px 18px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .brand-text small {
    display: none;
  }
  .brand-text strong {
    font-size: 22px;
  }
  .hero-carousel {
    height: 720px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 48px 20px 86px;
    gap: 28px;
  }
  .hero-poster {
    width: min(260px, 62vw);
    min-height: 340px;
  }
  .quick-search,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-cover {
    width: min(320px, 72vw);
  }
  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }
  .movie-grid,
  .latest-grid,
  .category-grid,
  .category-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .section-wrap {
    width: min(100% - 28px, 1280px);
    padding: 42px 0;
  }
  .hero-copy h1,
  .page-hero h1,
  .detail-intro h1 {
    font-size: 36px;
  }
  .hero-copy p,
  .detail-intro .lead {
    font-size: 16px;
  }
  .movie-grid,
  .latest-grid,
  .category-grid,
  .category-grid.wide,
  .filter-panel,
  .detail-info-grid {
    grid-template-columns: 1fr;
  }
  .movie-card.horizontal .card-link {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .wide-search {
    border-radius: 24px;
    align-items: stretch;
    flex-direction: column;
  }
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }
}
