:root {
  --sand-50: #faf8f3;
  --sand-100: #f5f0e6;
  --sand-200: #eadfc8;
  --sand-500: #b59a61;
  --sand-600: #9d8350;
  --sand-700: #7d6840;
  --desert-500: #d9a647;
  --desert-600: #b88d39;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-500: #6b7280;
  --line: #efe6d7;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 15px -3px rgba(181, 154, 97, 0.10), 0 4px 6px -2px rgba(181, 154, 97, 0.05);
  --shadow-soft: 0 4px 6px -1px rgba(181, 154, 97, 0.10), 0 2px 4px -1px rgba(181, 154, 97, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: linear-gradient(180deg, var(--sand-50), #ffffff 38%, #ffffff);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(234, 223, 200, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--sand-700);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sand-500), var(--desert-500));
  box-shadow: var(--shadow-soft);
}

.brand-text {
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a,
.mobile-panel a {
  padding: 9px 13px;
  color: var(--ink-700);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-panel a:hover {
  color: var(--sand-700);
  background: var(--sand-100);
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-search input,
.mobile-search input {
  width: 150px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 8px 8px 12px;
}

.nav-search button,
.mobile-search button,
.btn,
.rank-more {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 700;
}

.nav-search button,
.mobile-search button {
  color: #fff;
  background: var(--sand-600);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--sand-700);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--sand-100);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide > img {
  height: 100%;
  object-fit: cover;
}

.hero-shade,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.40) 46%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 58px;
}

.hero-copy {
  width: min(760px, 100%);
  color: #fff;
}

.hero-badges,
.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-badges span,
.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  font-size: 0.88rem;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.hero-badges span:first-child {
  background: var(--sand-500);
}

.hero h1,
.hero h2 {
  margin: 16px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sand-500), var(--desert-500));
  box-shadow: var(--shadow);
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

.hero-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.is-active {
  width: 44px;
  background: #fff;
}

.section-block {
  padding: 58px 0;
}

.section-heading,
.rank-head,
.page-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2,
.page-title h1,
.rank-head h2,
.detail-article h2 {
  margin: 0;
  color: var(--ink-900);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.18;
}

.section-heading p,
.page-title p {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--ink-500);
}

.section-heading > a,
.category-card-link b,
.rank-more {
  color: var(--sand-700);
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sand-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

.movie-card,
.category-tile,
.category-card-large,
.rank-panel,
.detail-side,
.detail-article,
.player-card,
.filter-panel,
.site-map-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: var(--sand-200);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.movie-card-horizontal {
  flex-direction: row;
}

.movie-card-horizontal .movie-poster {
  width: 180px;
  min-width: 180px;
  aspect-ratio: auto;
}

.movie-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand-100);
}

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

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

.movie-poster figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 9px;
  color: #fff;
  font-size: 0.78rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.movie-card h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: 1.02rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--sand-700);
}

.movie-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: var(--ink-500);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  padding: 3px 8px;
  color: var(--sand-700);
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 7px;
  background: var(--sand-50);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  color: var(--ink-500);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
}

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

.category-tile {
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-tile span,
.category-card-link span {
  color: var(--sand-700);
  font-weight: 900;
}

.category-tile p,
.category-card-link p {
  margin: 10px 0 16px;
  color: var(--ink-500);
  font-size: 0.92rem;
}

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

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.rank-head {
  display: block;
  margin-bottom: 18px;
}

.rank-head span {
  color: var(--sand-600);
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.rank-index {
  color: var(--sand-600);
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  grid-column: 2;
  color: var(--ink-500);
  font-size: 0.83rem;
}

.rank-more {
  display: inline-flex;
  margin-top: 18px;
  background: var(--sand-50);
}

.preview-stack {
  display: grid;
  gap: 26px;
}

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

.compact-card {
  display: grid;
  gap: 8px;
  color: var(--ink-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.compact-card img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  background: var(--sand-100);
  transition: transform 0.35s ease;
}

.compact-card span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-main {
  padding: 34px 0 70px;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.crumb a {
  color: var(--sand-700);
  font-weight: 800;
}

.crumb span::before,
.crumb a + a::before,
.crumb a + span::before {
  content: "/";
  margin-right: 8px;
  color: #c7b894;
}

.crumb.light {
  color: rgba(255, 255, 255, 0.72);
}

.crumb.light a {
  color: #fff;
}

.page-title {
  display: block;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 240, 230, 0.92), rgba(255, 255, 255, 0.95));
}

.channel-title {
  background: linear-gradient(135deg, rgba(181, 154, 97, 0.16), rgba(255, 255, 255, 0.98));
}

.category-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.category-card-large {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card-link h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin: 26px 0;
  padding: 18px;
}

.filter-search {
  display: grid;
  gap: 6px;
  color: var(--ink-500);
  font-size: 0.9rem;
  font-weight: 700;
}

.filter-search input,
.filter-selects select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  outline: 0;
}

.filter-search input {
  padding: 0 14px;
}

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-selects select {
  padding: 0 12px;
  color: var(--ink-700);
}

.empty-state {
  display: none;
  margin: 26px 0 0;
  padding: 24px;
  text-align: center;
  color: var(--ink-500);
  border: 1px dashed var(--sand-200);
  border-radius: var(--radius);
  background: var(--sand-50);
}

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

.ranking-hero-grid {
  margin: 28px 0;
}

.ranking-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ranking-table-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 130px 120px 150px;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.ranking-table-row:last-child {
  border-bottom: 0;
}

.ranking-number {
  color: var(--sand-600);
  font-weight: 900;
}

.ranking-name {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 34px;
  padding-bottom: 56px;
}

.detail-title-wrap {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  min-height: 460px;
  color: #fff;
}

.detail-poster {
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

.detail-title-copy h1 {
  margin: 16px 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.detail-title-copy p {
  max-width: 780px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.movie-player {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #050505;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.18));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding-left: 5px;
  color: var(--sand-700);
  font-size: 1.7rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.player-cover strong {
  font-size: 1.35rem;
}

.player-cover em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.detail-side {
  padding: 22px;
}

.detail-side h2 {
  margin: 0 0 16px;
}

.detail-side dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-side div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-side dt {
  color: var(--ink-500);
  font-weight: 700;
}

.detail-side dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 800;
}

.detail-side a {
  color: var(--sand-700);
}

.detail-article {
  display: grid;
  gap: 26px;
  padding: 34px;
}

.detail-article p {
  margin: 10px 0 0;
  color: var(--ink-700);
  font-size: 1.02rem;
}

.detail-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.detail-nav-links a {
  padding: 10px 15px;
  color: var(--sand-700);
  font-weight: 900;
  border-radius: 999px;
  background: var(--sand-50);
}

.site-map {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.site-map-group {
  padding: 24px;
}

.site-map-group h2 {
  margin: 0 0 16px;
  color: var(--sand-700);
}

.site-map-group ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-map-group li a {
  display: grid;
  gap: 2px;
  color: var(--ink-900);
  font-weight: 800;
}

.site-map-group li span {
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 500;
}

.site-footer {
  margin-top: 28px;
  background: #17120a;
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-brand {
  color: #fff;
  font-size: 1.15rem;
}

.site-footer p {
  max-width: 460px;
  margin: 12px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

[data-card].is-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}

@media (min-width: 1100px) {
  .hero {
    height: 700px;
  }
}

@media (max-width: 1180px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .compact-grid,
  .site-map-group ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-section,
  .player-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 64px;
  }

  .main-nav,
  .nav-search {
    display: none;
  }

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

  .hero {
    height: 560px;
  }

  .hero-arrow {
    display: none;
  }

  .section-heading,
  .page-title,
  .filter-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .category-grid,
  .compact-grid,
  .mini-poster-row,
  .site-map-group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ranking-table-row span:nth-child(n+3) {
    display: none;
  }

  .detail-title-wrap {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .detail-poster {
    width: 180px;
  }

  .filter-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    height: 620px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-actions,
  .detail-nav-links,
  .filter-selects {
    display: grid;
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .slim-grid,
  .category-grid,
  .category-overview,
  .compact-grid,
  .mini-poster-row,
  .site-map-group ul {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    flex-direction: column;
  }

  .movie-card-horizontal .movie-poster {
    width: 100%;
  }

  .page-title,
  .detail-article,
  .site-map-group {
    padding: 22px;
  }

  .detail-hero {
    min-height: 680px;
  }
}
