:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #1e293b;
  --panel-deep: #0b1120;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-dark: #64748b;
  --line: #1e293b;
  --ocean: #0ea5e9;
  --ocean-dark: #0284c7;
  --ocean-soft: rgba(14, 165, 233, 0.18);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(14, 165, 233, 0.12),
      transparent 32rem
    ),
    var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(30, 41, 59, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.header-inner,
.shell,
.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--ocean), #2563eb);
  color: white;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.3);
}

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

.brand-text strong {
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

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

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--panel-soft);
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 12px 16px 18px;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid var(--line);
}

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

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

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(2, 6, 23, 0.72) 42%,
      rgba(2, 6, 23, 0.1) 100%
    ),
    linear-gradient(0deg, #020617 0%, transparent 35%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  width: min(680px, calc(100% - 48px));
  transform: translateY(-50%);
  animation: fadeIn 0.55s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ocean-dark);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: white;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-info .lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span,
.tag-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 13px;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta {
  margin-top: 16px;
}

.hero-meta span + span::before,
.detail-meta span + span::before {
  content: "•";
  margin-right: 10px;
  color: var(--muted-dark);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 13px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border 0.22s ease;
}

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

.btn.primary {
  background: var(--ocean);
  color: white;
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.28);
}

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

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn.text {
  padding-inline: 6px;
  color: #bae6fd;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 36px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-arrow.next {
  right: 22px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.22s ease,
    background 0.22s ease;
}

.hero-dot.active {
  width: 34px;
  background: white;
}

.section {
  padding: 56px 0 0;
}

.section.no-top {
  padding-top: 24px;
}

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

.section-head.inline {
  margin-bottom: 18px;
}

.section-head h2,
.filter-title h2,
.player-section h2,
.detail-content h2,
.footer-col h2 {
  margin: 0;
  color: white;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}

.section-head a {
  color: #7dd3fc;
  font-weight: 700;
}

.dark-block {
  padding: 32px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.filter-grid {
  align-items: stretch;
}

.movie-card,
.movie-row {
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.75);
  background: var(--panel-soft);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border 0.24s ease,
    background 0.24s ease;
}

.movie-card {
  display: block;
  border-radius: var(--radius-sm);
}

.movie-card:hover,
.movie-row:hover,
.category-card:hover,
.category-overview-card:hover {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.movie-card figure,
.movie-row figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.movie-card img,
.movie-row img,
.category-card img,
.category-overview-card img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.movie-card:hover img,
.movie-row:hover img,
.category-card:hover img,
.category-overview-card:hover img {
  transform: scale(1.06);
  opacity: 0.86;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.86);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.play-float {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.92);
  color: white;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.play-float.small {
  width: 40px;
  height: 40px;
}

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

.card-body {
  padding: 14px;
}

.card-body h3,
.row-body h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: white;
  font-size: 15px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.22s ease;
}

.card-large .card-body h3 {
  font-size: 19px;
}

.card-body p,
.row-body p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover h3,
.movie-row:hover h3 {
  color: #38bdf8;
}

.scroll-row {
  display: grid;
  grid-auto-columns: minmax(230px, 300px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.75);
  background: var(--panel);
  border-radius: var(--radius);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border 0.24s ease;
}

.category-card {
  min-height: 220px;
  padding: 18px;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.14),
    rgba(15, 23, 42, 0.98)
  );
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card span {
  display: block;
  margin-top: 88px;
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.category-card p {
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.rank-block,
.latest-block,
.filter-panel,
.player-section,
.detail-content article,
.detail-content aside {
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.rank-block,
.latest-block {
  padding: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 86px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.72);
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.rank-item:hover {
  background: rgba(14, 165, 233, 0.16);
  transform: translateX(4px);
}

.rank-number {
  color: #38bdf8;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 86px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
}

.rank-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rank-text strong,
.rank-text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-text strong {
  color: white;
}

.rank-text small {
  color: var(--muted);
}

.movie-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: stretch;
  border-radius: 14px;
}

.movie-row figure {
  height: 100%;
}

.row-body {
  min-width: 0;
  padding: 12px 14px 12px 0;
}

.page-main {
  padding-top: 36px;
  padding-bottom: 64px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 48px;
  border: 1px solid rgba(30, 41, 59, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(15, 23, 42, 0.94)),
    var(--panel);
  box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.category-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.95),
      rgba(2, 6, 23, 0.65),
      rgba(2, 6, 23, 0.18)
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.category-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.category-preview img {
  aspect-ratio: 9 / 13;
  border-radius: 12px;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  color: white;
}

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

.category-overview-card span {
  color: #7dd3fc;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 480px);
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
  padding: 24px;
}

.filter-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.filter-controls {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.92);
  color: white;
  padding: 0 14px;
  outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px var(--ocean-soft);
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  color: #fca5a5;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #7dd3fc;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(30, 41, 59, 0.82);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.14),
    rgba(15, 23, 42, 0.88)
  );
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.detail-info h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.detail-meta {
  margin-top: 18px;
}

.player-section {
  margin-bottom: 32px;
  padding: 24px;
}

.player-section h2 {
  margin-bottom: 18px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.2),
    rgba(2, 6, 23, 0.72)
  );
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

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

.player-button {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.92);
  color: white;
  font-size: 32px;
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.34);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.player-overlay:hover .player-button {
  background: var(--ocean-dark);
  transform: scale(1.08);
}

.player-error {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(127, 29, 29, 0.92);
  color: white;
  text-align: center;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  margin-bottom: 10px;
}

.detail-content article,
.detail-content aside {
  padding: 26px;
}

.detail-content p {
  margin: 14px 0 24px;
  color: #cbd5e1;
  font-size: 16px;
}

.side-list .movie-row {
  grid-template-columns: 120px 1fr;
}

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

.site-footer {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding: 44px 0;
}

.footer-brand p,
.footer-col li,
.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
}

.footer-col h2 {
  margin-bottom: 14px;
  font-size: 17px;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a:hover {
  color: #38bdf8;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

  .split-section,
  .detail-content,
  .filter-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .header-inner,
  .shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero-slider {
    min-height: 560px;
    height: 72vh;
  }

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .hero-content p,
  .page-hero p,
  .detail-info .lead {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding-top: 38px;
  }

  .dark-block,
  .page-hero,
  .detail-hero,
  .player-section,
  .detail-content article,
  .detail-content aside,
  .filter-panel {
    padding: 20px;
    border-radius: 18px;
  }

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

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

  .detail-poster {
    width: min(320px, 100%);
  }

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

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

  .movie-row,
  .rank-item {
    grid-template-columns: 110px 1fr;
  }

  .rank-number {
    display: none;
  }

  .rank-item img {
    width: 110px;
  }

  .footer-inner {
    gap: 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .large-grid,
  .poster-grid,
  .related-grid,
  .category-grid,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .movie-row {
    grid-template-columns: 126px 1fr;
  }

  .scroll-row {
    grid-auto-columns: 78%;
  }
}
