:root {
  --pink: #ec4899;
  --pink-deep: #db2777;
  --pink-soft: #fce7f3;
  --amber: #f59e0b;
  --purple: #8b5cf6;
  --text: #111827;
  --muted: #6b7280;
  --line: #fbcfe8;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 55px rgba(236, 72, 153, 0.16);
  --soft-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 45%, #fff7ed 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(251, 207, 232, 0.85);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 24px rgba(236, 72, 153, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

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

.brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.nav-button {
  border: 0;
  cursor: pointer;
  color: #374151;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.active {
  color: var(--pink-deep);
  background: #fdf2f8;
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: 212px;
  padding: 10px;
  border: 1px solid #fce7f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--pink-deep);
  background: #fdf2f8;
}

.menu-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #374151;
  background: #fdf2f8;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 0 18px;
}

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

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #374151;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #f5f3ff 55%, #fffbeb);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: blur(2px) saturate(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(236, 72, 153, 0.2), transparent 28%),
    radial-gradient(circle at 22% 34%, rgba(245, 158, 11, 0.2), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74), rgba(255, 247, 237, 0.48));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding: 70px 0 96px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--pink-deep);
  font-weight: 800;
}

.hero-kicker svg {
  width: 22px;
  height: 22px;
}

.hero-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.gradient-text {
  background: linear-gradient(90deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: 999px;
  color: #be185d;
  background: rgba(253, 242, 248, 0.86);
  font-size: 13px;
  font-weight: 800;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(236, 72, 153, 0.36);
}

.btn-light {
  border: 2px solid #fbcfe8;
  color: var(--pink-deep);
  background: rgba(255, 255, 255, 0.88);
}

.btn-light:hover {
  color: #be185d;
  background: #fff7fb;
  transform: translateY(-2px);
}

.hero-poster-wrap {
  position: relative;
  min-height: 420px;
}

.hero-poster-card {
  position: absolute;
  right: 2%;
  top: 50%;
  width: min(360px, 100%);
  aspect-ratio: 3 / 4;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #fffbeb);
  box-shadow: 0 40px 90px rgba(236, 72, 153, 0.28);
  transform: translateY(-50%) rotate(6deg);
}

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

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

.hero-mini-grid {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, 92px);
  gap: 14px;
  transform: rotate(-8deg);
}

.hero-mini-grid a {
  display: block;
  aspect-ratio: 3 / 4;
  border: 6px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  overflow: hidden;
  background: #fdf2f8;
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.16);
}

.hero-mini-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.26);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--pink), var(--amber));
}

.section {
  padding: 72px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.74);
}

.section-soft {
  background: linear-gradient(180deg, #fdf2f8, rgba(255, 255, 255, 0.8));
}

.section-hot {
  background: linear-gradient(90deg, #fef3c7, #fce7f3, #ede9fe);
}

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

.section-title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.feature-card,
.category-card,
.info-card {
  border: 1px solid rgba(251, 207, 232, 0.7);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.category-card:hover,
.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--pink-deep);
  background: #fce7f3;
}

.feature-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.feature-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.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-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(243, 244, 246, 0.96);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #fffbeb);
}

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

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

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

.play-float {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.38);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .play-float {
  opacity: 1;
}

.play-bubble {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--pink-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.2);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 4;
  min-width: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  text-align: center;
  font-size: 12px;
  font-weight: 950;
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.movie-title {
  margin: 0;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card:hover .movie-title {
  color: var(--pink-deep);
}

.movie-desc {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  color: #6b7280;
  font-size: 12px;
}

.meta-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f9fafb;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d97706;
  font-weight: 900;
}

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

.category-card {
  overflow: hidden;
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card h2,
.category-card h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.category-card p {
  margin: 0 0 14px;
  min-height: 50px;
  color: var(--muted);
  line-height: 1.65;
}

.category-covers {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  min-height: 150px;
}

.category-covers img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 18px;
  object-fit: cover;
  background: #fdf2f8;
}

.category-covers .stack {
  display: grid;
  gap: 10px;
}

.category-covers .stack img {
  min-height: 70px;
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(90deg, #fce7f3, #ede9fe, #fffbeb);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.page-hero p {
  max-width: 760px;
  margin: 15px 0 0;
  color: #4b5563;
  line-height: 1.8;
  font-size: 18px;
}

.filter-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(251, 207, 232, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.filter-input {
  flex: 1 1 280px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  color: #111827;
  outline: none;
  background: #ffffff;
}

.filter-select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  color: #374151;
  outline: none;
  background: #ffffff;
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.empty-state {
  display: none;
  padding: 40px 20px;
  border: 1px dashed #f9a8d4;
  border-radius: 26px;
  color: #9d174d;
  background: #fdf2f8;
  text-align: center;
  font-weight: 800;
}

.empty-state.show {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--pink-deep);
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.detail-cover {
  overflow: hidden;
  border-radius: 30px;
  background: #fdf2f8;
  box-shadow: var(--shadow);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.detail-one-line {
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.player-section {
  padding-top: 0;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.34);
}

.player-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111827;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.62), rgba(236, 72, 153, 0.34));
  cursor: pointer;
}

.player-overlay[hidden] {
  display: none;
}

.player-button {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: var(--pink-deep);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.26);
  transition: transform 0.2s ease;
}

.player-overlay:hover .player-button {
  transform: scale(1.08);
}

.content-card {
  padding: 28px;
  border: 1px solid rgba(251, 207, 232, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
  font-size: 16px;
}

.content-card p + p {
  margin-top: 14px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(251, 207, 232, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  font-weight: 950;
}

.rank-row img {
  width: 82px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  object-fit: cover;
  background: #fdf2f8;
}

.rank-row h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-row p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.site-footer {
  padding: 46px 0 30px;
  border-top: 1px solid rgba(251, 207, 232, 0.8);
  background: linear-gradient(180deg, #fdf2f8, #fce7f3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 26px;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
}

.footer-text,
.footer-links a,
.copyright {
  color: #6b7280;
  line-height: 1.8;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.copyright {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 207, 232, 0.9);
  text-align: center;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(-50%) rotate(6deg);
  }
  50% {
    transform: translateY(calc(-50% - 12px)) rotate(6deg);
  }
}

.hero-slide.is-active .hero-poster-card {
  animation: floatCard 5s ease-in-out infinite;
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-content,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster-wrap {
    display: none;
  }

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

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

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

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero-slider {
    min-height: 590px;
  }

  .hero-content {
    padding: 54px 0 82px;
  }

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

  .btn {
    width: 100%;
  }

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

  .section {
    padding: 52px 0;
  }

  .movie-info {
    padding: 13px;
  }

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

  .rank-row .rating {
    grid-column: 3;
  }

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

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

  .hero-title {
    font-size: 42px;
  }

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-input,
  .filter-select {
    width: 100%;
  }
}
