:root {
  --asagi: #00A3AF;
  --asagi-light: #33B8C2;
  --asagi-dark: #008C97;
  --asagi-pale: #E6F7F8;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 8px 24px rgba(0, 163, 175, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text {
  font-size: 22px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--asagi), var(--asagi-light));
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 14px;
  color: #475569;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--asagi-dark);
  background: var(--asagi-pale);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--asagi);
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

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

.hero-tags,
.detail-hero-tags,
.movie-tags,
.detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-hero-tags span,
.movie-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.movie-tags span,
.detail-tags span {
  color: var(--asagi-dark);
  background: var(--asagi-pale);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 32px;
  color: #e5e7eb;
  font-size: clamp(18px, 2vw, 24px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--asagi);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--asagi-dark);
}

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

.btn-soft {
  color: var(--asagi-dark);
  background: rgba(255, 255, 255, 0.92);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  font-size: 34px;
  line-height: 1;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.42);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.section-pad {
  padding: 72px 0;
}

.light-section {
  background: rgba(255, 255, 255, 0.56);
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--asagi-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.search-box h2,
.content-card h2,
.meta-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-more {
  flex: 0 0 auto;
  color: var(--asagi-dark);
  font-weight: 900;
}

.search-panel {
  padding-top: 56px;
}

.search-box {
  padding: 36px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.home-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 20px;
}

.home-search-form input,
.catalog-search {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  outline: none;
  background: #ffffff;
}

.home-search-form input:focus,
.catalog-search:focus {
  border-color: var(--asagi);
  box-shadow: 0 0 0 4px rgba(0, 163, 175, 0.14);
}

.home-search-form button {
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: var(--asagi);
  font-weight: 900;
  cursor: pointer;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.search-result-card img {
  width: 82px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #e2e8f0;
}

.search-result-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.search-result-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

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

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

.compact-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.movie-card {
  display: block;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.movie-card:hover {
  border-color: rgba(0, 163, 175, 0.32);
  box-shadow: 0 18px 36px rgba(0, 163, 175, 0.18);
  transform: translateY(-5px);
}

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.movie-card-featured .movie-thumb {
  aspect-ratio: 4 / 3;
}

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

.movie-card:hover .movie-thumb img {
  transform: scale(1.06);
}

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 56%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .movie-thumb::after {
  opacity: 1;
}

.movie-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 3px 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--asagi);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.movie-card:hover .movie-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 3.0em;
  margin: 0 0 8px;
  overflow: hidden;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--asagi-dark);
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-card,
.category-overview-card,
.content-card,
.meta-card,
.poster-card,
.player-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.75);
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}

.category-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card strong,
.category-overview-top span {
  display: block;
  margin-bottom: 10px;
  color: var(--asagi-dark);
  font-size: 20px;
  font-weight: 900;
}

.category-card p,
.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-samples,
.category-title-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples span,
.category-title-links a {
  padding: 4px 9px;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 800;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

.rank-list,
.ranking-list-page {
  display: grid;
  gap: 12px;
}

.rank-row,
.ranking-card {
  display: grid;
  grid-template-columns: 52px 74px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-num,
.ranking-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--asagi-dark);
  background: var(--asagi-pale);
  border-radius: 12px;
  font-weight: 900;
}

.rank-row img,
.ranking-card img {
  width: 74px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  background: #e2e8f0;
}

.rank-main strong,
.ranking-info strong {
  display: block;
  color: #1f2937;
  font-weight: 900;
}

.rank-main em,
.ranking-info em,
.ranking-info small {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.ranking-info small {
  margin-top: 4px;
}

.rank-score,
.ranking-score {
  color: #f59e0b;
  font-weight: 900;
}

.rank-gold .ranking-index {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.page-main {
  min-height: 60vh;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #0e7490);
}

.page-hero {
  padding: 74px 0;
}

.small-hero {
  padding: 86px 0;
}

.page-hero h1,
.detail-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p,
.detail-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

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

.catalog-tools {
  position: sticky;
  top: 86px;
  z-index: 20;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

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

.filter-chip {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: var(--asagi);
  border-color: var(--asagi);
}

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

.category-overview-card {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-overview-top a {
  color: var(--asagi-dark);
  font-weight: 900;
}

.detail-hero {
  padding: 70px 0 90px;
  background: #020617;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(3px) saturate(1.1);
  transform: scale(1.04);
}

.detail-bg-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.46));
}

.detail-hero-inner {
  position: relative;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.player-card {
  overflow: hidden;
  background: #000000;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000000;
  cursor: pointer;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.10));
}

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

.player-play-mark {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--asagi);
  border-radius: 999px;
  font-size: 38px;
  box-shadow: var(--shadow-soft);
}

.player-error {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.86);
  font-weight: 800;
}

.content-card,
.meta-card {
  padding: 26px;
}

.content-card p {
  margin: 14px 0 0;
  color: #334155;
  font-size: 17px;
}

.poster-card {
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #e2e8f0;
}

.meta-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
  padding: 0;
}

.meta-card li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f7;
}

.meta-card li span {
  color: var(--muted);
}

.meta-card li strong {
  text-align: right;
}

.site-footer {
  color: #cbd5e1;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0;
}

.footer-brand {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--asagi-light);
  font-size: 16px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 7px 0;
  color: #94a3b8;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--asagi-light);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: #94a3b8;
  text-align: center;
  font-size: 13px;
}

.hidden-by-filter {
  display: none !important;
}

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

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

  .two-column-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24));
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 78px;
  }

  .hero-arrow {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .related-grid,
  .catalog-grid,
  .search-results,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-search-form {
    grid-template-columns: 1fr;
  }

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

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

  .brand-text {
    font-size: 19px;
  }

  .section-pad {
    padding: 50px 0;
  }

  .search-box,
  .content-card,
  .meta-card {
    padding: 20px;
    border-radius: 20px;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .related-grid,
  .catalog-grid,
  .search-results,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rank-row,
  .ranking-card {
    grid-template-columns: 44px 64px 1fr;
  }

  .rank-score,
  .ranking-score {
    grid-column: 3;
    justify-self: start;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 36px;
  }

  .page-hero,
  .small-hero,
  .detail-hero {
    padding: 54px 0;
  }

  .player-play-mark {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }
}
