:root {
  --primary-50: #f4f7f5;
  --primary-100: #e4ece6;
  --primary-500: #4a7c54;
  --primary-600: #3d6744;
  --primary-800: #233d26;
  --accent-50: #fef7ed;
  --accent-500: #e88f1a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 4px 14px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 12px 30px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 28px 70px rgba(17, 24, 39, 0.24);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.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.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.04);
}

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

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

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary-500);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(74, 124, 84, 0.28);
}

.brand-text {
  font-size: clamp(20px, 3vw, 27px);
  color: var(--gray-900);
}

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

.nav-link,
.mobile-link {
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 12px 16px 18px;
}

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

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-link.active,
.mobile-link:hover {
  background: var(--primary-50);
}

.hero-carousel {
  position: relative;
  height: min(720px, 72vh);
  min-height: 520px;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 2.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.54) 44%, rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 76px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  color: var(--white);
  background: var(--primary-500);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.eyebrow.dark {
  color: var(--primary-800);
  background: var(--primary-50);
}

.hero-content h1,
.inner-hero h1,
.detail-intro h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-content p,
.inner-hero p,
.detail-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.2vw, 21px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta span {
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: var(--primary-500);
  box-shadow: 0 14px 26px rgba(74, 124, 84, 0.26);
}

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

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.btn.secondary {
  color: var(--primary-800);
  background: var(--primary-50);
  border-color: var(--primary-100);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

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

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.dot.active {
  width: 30px;
  background: var(--white);
}

.search-strip {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

.search-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.search-panel h2,
.section-head h2,
.rank-panel h2,
.detail-article h2,
.side-panel h2,
.article-card h2,
.service-grid h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.search-panel p,
.article-card p,
.service-grid p {
  margin: 10px 0 0;
  color: var(--gray-600);
}

.search-box,
.filter-line,
.filter-panel {
  display: flex;
  gap: 12px;
}

.search-box input,
.filter-line input,
.filter-line select,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  color: var(--gray-900);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.filter-line input:focus,
.filter-line select:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(74, 124, 84, 0.12);
}

.section {
  padding: 72px 0;
}

.soft-bg {
  background: var(--gray-50);
}

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

.section-head.compact {
  margin-bottom: 22px;
}

.text-link {
  color: var(--primary-600);
  font-weight: 800;
}

.text-link:hover {
  color: var(--primary-800);
}

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

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

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cover) center / cover;
  transition: transform 0.5s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.86));
}

.category-card:hover::before {
  transform: scale(1.08);
}

.category-card span {
  font-size: 24px;
  font-weight: 850;
}

.category-card strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
}

.category-card em {
  margin-top: 14px;
  color: var(--accent-50);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(74, 124, 84, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.05);
}

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 9px;
  color: var(--white);
  background: var(--primary-500);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.movie-info h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.32;
}

.movie-info h2 a:hover,
.rank-card h2 a:hover {
  color: var(--primary-600);
}

.movie-info p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0 14px;
  color: var(--gray-600);
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span {
  padding: 4px 8px;
  background: var(--gray-50);
  border-radius: 999px;
}

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

.rank-panel,
.side-panel,
.article-card,
.service-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.rank-list,
.side-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rank-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.rank-item:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.rank-num {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary-500);
  border-radius: 10px;
  font-weight: 850;
}

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

.rank-type {
  color: var(--gray-500);
  font-size: 13px;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background: radial-gradient(circle at 10% 20%, rgba(232, 143, 26, 0.32), transparent 30%), linear-gradient(135deg, var(--primary-800), var(--gray-900));
}

.inner-hero.category-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cover) center / cover;
  opacity: 0.34;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.filter-line,
.filter-panel {
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(130px, 1fr)) auto;
}

.filter-line input {
  flex: 1 1 260px;
}

.filter-line select {
  flex: 0 1 220px;
}

.empty-state {
  margin-top: 22px;
  padding: 28px;
  color: var(--gray-600);
  text-align: center;
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
}

.rank-cards {
  display: grid;
  gap: 16px;
}

.rank-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.rank-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

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

.rank-cover span {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--accent-500);
  border-radius: 10px;
  font-weight: 850;
}

.rank-card-body h2 {
  margin: 0;
  font-size: 22px;
}

.rank-card-body p {
  margin: 8px 0 14px;
  color: var(--gray-600);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.86));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 560px;
  padding: 72px 0;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  padding: 5px 10px;
  color: var(--primary-800);
  background: rgba(244, 247, 245, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.player-section {
  background: var(--gray-900);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.movie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
  border: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: var(--primary-500);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(74, 124, 84, 0.35);
  font-size: 30px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-btn {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.source-btn.active,
.source-btn:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

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

.detail-article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.detail-article h2 + p {
  margin-top: 12px;
}

.detail-article p {
  color: var(--gray-700);
  font-size: 17px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: 12px;
}

.side-panel {
  position: sticky;
  top: 98px;
}

.article-section {
  background: var(--gray-50);
}

.article-card {
  max-width: 900px;
}

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

.site-footer {
  color: var(--gray-300);
  background: var(--gray-900);
}

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

.footer-brand {
  color: var(--white);
  font-size: 24px;
}

.site-footer p {
  max-width: 420px;
  color: var(--gray-300);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

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

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

  .side-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .hero-carousel {
    min-height: 560px;
    height: 68vh;
  }

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

  .hero-control {
    display: none;
  }

  .search-panel,
  .detail-hero-inner,
  .footer-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(240px, 70vw);
  }

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

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

  .rank-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }
}

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

  .nav-wrap {
    min-height: 66px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .hero-content h1,
  .inner-hero h1,
  .detail-intro h1 {
    font-size: 34px;
  }

  .hero-meta span {
    font-size: 12px;
  }

  .search-panel,
  .filter-line,
  .filter-panel,
  .detail-article,
  .rank-panel,
  .side-panel,
  .article-card {
    padding: 16px;
  }

  .search-box,
  .filter-line,
  .filter-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .rank-cover {
    aspect-ratio: 16 / 9;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
