:root {
  --amber-950: #451a03;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-300: #fcd34d;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;
  --red-950: #450a0a;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-700: #44403c;
  --text: #3b2208;
  --muted: #786247;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(69, 26, 3, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--amber-50) 0%, var(--stone-100) 68%, #fff7ed 100%);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 235, 0.95);
  border-bottom: 1px solid var(--amber-200);
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1220px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-900);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-logo {
  min-width: max-content;
  font-size: clamp(22px, 2.2vw, 30px);
}

.site-logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--red-700));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.22);
  font-size: 16px;
}

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

.nav-link,
.mobile-nav-link {
  color: var(--amber-900);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--amber-600);
}

.header-search,
.mobile-search,
.hero-search,
.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-search input {
  width: 100%;
  border: 2px solid var(--amber-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--amber-950);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 260px;
  padding: 10px 16px;
}

.mobile-search input,
.filter-search input {
  padding: 12px 16px;
}

.hero-search input {
  min-width: min(420px, 100%);
  padding: 15px 20px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-search input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-search button,
.hero-search button,
.filter-search button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button,
.filter-search button {
  padding: 10px 18px;
  color: #fff;
  background: var(--amber-600);
}

.hero-search button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--red-700));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.filter-search button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(120, 53, 15, 0.2);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--amber-900);
  background: rgba(253, 230, 138, 0.45);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 24px;
}

.mobile-panel {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(253, 230, 138, 0.38);
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--red-950);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.14)), linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 42%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100% - 1220px) / 2));
  right: max(32px, calc((100% - 1220px) / 2));
  bottom: 70px;
  max-width: 760px;
  color: #fff;
}

.hero-kicker,
.page-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber-200);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  max-width: 680px;
  margin: 0 0 26px;
  color: #fff7ed;
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills a,
.tag,
.meta-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.hero-pills a,
.meta-pill {
  padding: 9px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.58);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-300);
}

.hero-search-panel {
  width: min(1220px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
  padding: 22px;
  border: 1px solid rgba(253, 230, 138, 0.75);
  border-radius: 28px;
  background: rgba(255, 251, 235, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-search {
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-search-links a {
  padding: 9px 14px;
  color: var(--amber-900);
  background: var(--amber-100);
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  font-weight: 800;
}

.section,
.page-main,
.detail-main {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 68px 0 0;
}

.section-header,
.page-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-header h2,
.page-header h1,
.detail-copy h1,
.content-block h2,
.related-block h2 {
  margin: 0;
  color: var(--amber-950);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.section-header h2,
.page-header h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-header p,
.page-header p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.view-more {
  color: var(--amber-700);
  font-weight: 900;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.75);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(69, 26, 3, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: var(--amber-300);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.movie-poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #7c2d12, #451a03);
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.movie-card:hover .movie-poster {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.movie-badge,
.movie-score {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.movie-badge {
  left: 10px;
  top: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 10px;
  background: rgba(185, 28, 28, 0.86);
  backdrop-filter: blur(10px);
}

.movie-score {
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  background: rgba(217, 119, 6, 0.92);
}

.movie-card-body {
  padding: 14px 14px 16px;
}

.movie-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--amber-950);
}

.movie-title a:hover {
  color: var(--amber-700);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--amber-800);
  font-size: 12px;
  font-weight: 800;
}

.movie-meta span {
  padding: 5px 8px;
  background: var(--amber-100);
  border-radius: 999px;
}

.category-showcase {
  display: grid;
  gap: 34px;
}

.category-row {
  padding: 26px;
  border: 1px solid rgba(253, 230, 138, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 36px rgba(69, 26, 3, 0.08);
}

.category-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.category-row-head h2 {
  margin: 0;
  color: var(--amber-950);
  font-size: 26px;
  font-weight: 950;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(253, 230, 138, 0.75);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(69, 26, 3, 0.06);
}

.rank-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
  border-radius: 16px;
  font-weight: 950;
}

.rank-title {
  display: block;
  color: var(--amber-950);
  font-weight: 900;
}

.rank-desc {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.rank-score {
  color: var(--amber-700);
  font-weight: 950;
}

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

.page-hero {
  margin-bottom: 34px;
  padding: 40px;
  border-radius: 32px;
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.5), transparent 32%), linear-gradient(135deg, var(--red-950), var(--amber-900));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-tile {
  min-height: 178px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--amber-700), var(--red-800));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(69, 26, 3, 0.22);
}

.category-tile h2 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 950;
}

.category-tile p {
  margin: 0;
  color: #ffedd5;
  line-height: 1.7;
}

.filter-bar {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(253, 230, 138, 0.8);
  border-radius: 24px;
  background: rgba(255, 251, 235, 0.94);
  box-shadow: 0 14px 32px rgba(69, 26, 3, 0.1);
  backdrop-filter: blur(12px);
}

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

.filter-chip {
  padding: 9px 14px;
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  color: var(--amber-900);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #fff;
  background: var(--amber-600);
  border-color: var(--amber-600);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumb a {
  color: var(--amber-700);
}

.detail-main {
  padding: 40px 0 72px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #7c2d12, #451a03);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.detail-copy {
  padding: 36px;
  border: 1px solid rgba(253, 230, 138, 0.8);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 20px;
  color: var(--stone-700);
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta .meta-pill {
  color: var(--amber-900);
  background: var(--amber-100);
  border-color: var(--amber-200);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 11px;
  color: var(--red-800);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  font-size: 13px;
}

.player-section,
.content-block,
.related-block {
  margin-top: 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #050505;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-600), var(--red-700));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
  font-size: 30px;
}

.play-text {
  font-size: 22px;
  font-weight: 950;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.content-block {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(253, 230, 138, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(69, 26, 3, 0.08);
}

.content-block h2,
.related-block h2 {
  font-size: 30px;
}

.content-block p {
  margin: 0;
  color: var(--stone-700);
  font-size: 17px;
  line-height: 1.95;
}

.related-block {
  padding-top: 8px;
}

.related-block h2 {
  margin-bottom: 20px;
}

.empty-filter {
  display: none;
  padding: 30px;
  border-radius: 20px;
  color: var(--muted);
  background: #fff;
  text-align: center;
  font-weight: 800;
}

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

.site-footer {
  margin-top: 74px;
  color: #fee2e2;
  background: linear-gradient(135deg, var(--red-950), var(--amber-950));
}

.footer-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  color: #fff;
  font-size: 28px;
}

.footer-brand p {
  max-width: 540px;
  margin: 14px 0 0;
  color: #fecaca;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.footer-links a {
  color: #fecaca;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(254, 202, 202, 0.22);
  color: #fca5a5;
  text-align: center;
}

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

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

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

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

@media (max-width: 900px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-inner {
    height: 66px;
  }

  .hero-carousel {
    height: 76vh;
    min-height: 620px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 76px;
  }

  .hero-control {
    display: none;
  }

  .section-header,
  .page-header,
  .category-row-head {
    display: block;
  }

  .view-more {
    display: inline-block;
    margin-top: 12px;
  }

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

  .detail-poster img {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .site-logo {
    font-size: 20px;
  }

  .site-logo-mark {
    width: 32px;
    height: 32px;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .hero-search-panel,
  .page-hero,
  .category-row,
  .detail-copy,
  .content-block {
    border-radius: 22px;
    padding: 20px;
  }

  .hero-search {
    display: grid;
  }

  .hero-search button,
  .filter-search button {
    width: 100%;
  }

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

  .movie-card-body {
    padding: 12px;
  }

  .movie-title {
    font-size: 15px;
  }

  .movie-line {
    min-height: 40px;
    font-size: 12px;
  }

  .ranking-list,
  .category-tiles {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 48px 1fr;
  }

  .rank-score {
    grid-column: 2;
  }

  .filter-bar {
    position: static;
  }

  .detail-copy h1 {
    font-size: 34px;
  }

  .play-icon {
    width: 66px;
    height: 66px;
  }

  .play-text {
    font-size: 18px;
  }
}
