:root {
  --bg: #030712;
  --bg-soft: #0b1120;
  --panel: rgba(17, 24, 39, 0.82);
  --panel-strong: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f9fafb;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #111827 46%, #020617 100%);
  color: var(--text);
}

body,
button,
input {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
}

img {
  background: rgba(15, 23, 42, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f97316);
  box-shadow: 0 0 38px rgba(245, 158, 11, 0.35);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.main-nav,
.sub-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav {
  margin-left: auto;
}

.sub-nav {
  border-left: 1px solid var(--line);
  padding-left: 0.85rem;
}

.nav-link,
.nav-sub-link {
  display: inline-flex;
  align-items: center;
  border-radius: 0.75rem;
  transition: 0.2s ease;
}

.nav-link {
  padding: 0.65rem 0.9rem;
  color: #d1d5db;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-sub-link {
  padding: 0.45rem 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-link:hover,
.nav-link.is-active,
.nav-sub-link:hover {
  color: #fff;
  background: rgba(245, 158, 11, 0.16);
}

.menu-toggle {
  width: 2.4rem;
  height: 2.4rem;
  display: none;
  margin-left: auto;
  border-radius: 0.75rem;
  background: rgba(31, 41, 55, 0.84);
  border: 1px solid var(--line);
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  display: block;
  margin: 0.24rem auto;
  background: #fff;
  border-radius: 99px;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #030712;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.55)),
    linear-gradient(0deg, #020617 0%, transparent 42%, rgba(2, 6, 23, 0.66) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.2rem 9.5rem;
  display: flex;
  align-items: center;
}

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-top: 1.1rem;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 850;
}

.hero-copy p {
  max-width: 640px;
  margin-top: 1.1rem;
  color: #d1d5db;
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.8;
}

.hero-tags,
.tag-row,
.movie-meta,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.hero-tags {
  margin-top: 1.25rem;
}

.hero-tags span,
.tag-row span,
.movie-meta span,
.detail-meta span,
.rank-meta span {
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.11);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.62rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.primary-btn,
.ghost-btn,
.section-more,
.detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border-radius: 0.9rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f97316);
  box-shadow: 0 16px 42px rgba(245, 158, 11, 0.28);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.015);
  background: linear-gradient(135deg, #fbbf24, var(--accent-strong));
}

.ghost-btn,
.detail-back {
  color: #e5e7eb;
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.ghost-btn:hover,
.detail-back:hover,
.section-more:hover {
  color: #fff;
  background: rgba(245, 158, 11, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 2rem;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(245, 158, 11, 0.82);
}

.hero-prev {
  left: 1.2rem;
}

.hero-next {
  right: 1.2rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 6.85rem;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.25s ease;
}

.hero-dot.is-active {
  width: 2.2rem;
  background: var(--accent);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 5;
  width: min(1180px, calc(100% - 2.4rem));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.hero-thumb {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.hero-thumb:hover {
  border-color: rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
}

.hero-thumb img {
  width: 3.3rem;
  height: 4.2rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

.hero-thumb span {
  overflow: hidden;
  display: -webkit-box;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-main,
.detail-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 4.5rem;
}

.content-section {
  margin-top: 3.5rem;
}

.section-heading,
.page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.page-heading {
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 26rem),
    rgba(17, 24, 39, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-heading h2,
.page-heading h1 {
  margin-top: 0.35rem;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-heading p {
  max-width: 760px;
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.75;
}

.section-more {
  min-width: max-content;
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.1);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 1.15rem;
  background: rgba(17, 24, 39, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  transition: 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.56);
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.14);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

.movie-card-large .movie-cover {
  aspect-ratio: 16 / 9;
}

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

.movie-card:hover .movie-cover img {
  transform: scale(1.07);
  opacity: 0.88;
}

.play-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.play-pill {
  left: 0.7rem;
  bottom: 0.7rem;
  padding: 0.34rem 0.68rem;
  color: #fff;
  background: rgba(245, 158, 11, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.rank-badge {
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.28rem 0.58rem;
  color: #111827;
  background: #fbbf24;
}

.movie-info {
  padding: 0.9rem;
}

.movie-meta {
  margin-bottom: 0.7rem;
}

.movie-meta span {
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.08);
}

.movie-info h2 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 850;
}

.movie-info h2 a:hover {
  color: #fbbf24;
}

.movie-info p {
  overflow: hidden;
  display: -webkit-box;
  min-height: 3.2rem;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  margin-top: 0.75rem;
}

.tag-row span {
  color: #d1d5db;
  background: rgba(31, 41, 55, 0.82);
  border-color: var(--line);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.category-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.1rem;
  padding: 1rem;
  min-height: 190px;
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid var(--line);
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.52);
  background: rgba(31, 41, 55, 0.8);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.category-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.category-card span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.category-card h2 {
  margin-top: 0.4rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.category-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.7;
}

.filter-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border-radius: 1.15rem;
  background: rgba(17, 24, 39, 0.68);
  border: 1px solid var(--line);
}

.search-box {
  display: grid;
  gap: 0.45rem;
}

.search-box span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  color: #fff;
  background: rgba(3, 7, 18, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.9rem;
  outline: none;
}

.search-box input:focus {
  border-color: rgba(245, 158, 11, 0.66);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-chip {
  min-height: 2.25rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  color: #d1d5db;
  background: rgba(31, 41, 55, 0.82);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.empty-state {
  display: none;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.compact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.compact-link {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid var(--line);
  transition: 0.2s ease;
}

.compact-link:hover {
  border-color: rgba(245, 158, 11, 0.52);
  background: rgba(31, 41, 55, 0.84);
}

.compact-link span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: #fbbf24;
  font-weight: 900;
}

.compact-link strong {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
}

.compact-link em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #030712;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36)),
    linear-gradient(0deg, #020617, transparent 50%, rgba(2, 6, 23, 0.7));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.2rem 4rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

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

.detail-copy h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-copy p {
  max-width: 820px;
  margin-top: 1.1rem;
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.85;
}

.detail-meta {
  margin-top: 1.3rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: #fde68a;
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.player-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: #020617;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 28%),
    rgba(0, 0, 0, 0.38);
  transition: opacity 0.22s ease;
  cursor: pointer;
}

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

.play-button {
  width: 5.8rem;
  height: 5.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.94);
  box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.16), 0 22px 70px rgba(0, 0, 0, 0.5);
  font-size: 2.7rem;
  line-height: 1;
  transition: 0.2s ease;
}

.play-button:hover {
  transform: scale(1.06);
  background: #fbbf24;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.detail-article,
.side-panel {
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.detail-article {
  padding: 1.6rem;
}

.detail-article h2,
.side-panel h2 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.detail-article p {
  margin-top: 0.85rem;
  color: #d1d5db;
  line-height: 1.95;
}

.side-panel {
  padding: 1.1rem;
}

.side-panel .compact-list {
  grid-template-columns: 1fr;
}

.side-panel .compact-link {
  grid-template-columns: 2.4rem 1fr;
}

.side-panel .compact-link em {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.78);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 2rem;
}

.footer-brand {
  display: inline-block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
}

.site-footer p {
  max-width: 560px;
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
}

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

.site-footer li {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
}

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

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

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

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

@media (max-width: 860px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

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

  .nav-link {
    width: 100%;
  }

  .hero-carousel {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 13rem;
    align-items: end;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 9.4rem;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    bottom: 1rem;
  }

  .hero-thumb:nth-child(n+5) {
    display: none;
  }

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

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

  .category-card {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    padding-top: 3rem;
  }

  .compact-list {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .page-heading {
    display: grid;
    align-items: start;
  }

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

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .hero-carousel {
    min-height: 760px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-thumb:nth-child(n+4) {
    display: none;
  }

  .movie-grid,
  .movie-grid-wide {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: 190px;
  }

  .compact-link {
    grid-template-columns: 2.8rem 1fr;
  }

  .compact-link em {
    display: none;
  }
}
