:root {
  --background: hsl(224, 71%, 4%);
  --foreground: hsl(213, 31%, 91%);
  --primary: hsl(210, 40%, 98%);
  --primary-foreground: hsl(222.2, 47.4%, 1.2%);
  --muted: hsl(223, 47%, 11%);
  --muted-foreground: hsl(215.4, 16.3%, 56.9%);
  --accent: rgba(255, 255, 255, 0.1);
  --accent-foreground: hsl(210, 40%, 98%);
  --border: rgba(255, 255, 255, 0.1);
  --input: rgba(255, 255, 255, 0.1);
  --ring: rgba(255, 255, 255, 0.1);
  --radius: 0.5rem;
  --vh: 1vh;
  --play-btn-color: #2563eb;
}
input::placeholder {
  color: white; /* رنگ دلخواهت */
  opacity: 0.8; /* برای اطمینان از اینکه رنگ کاملاً اعمال بشه */
}@font-face {
  font-family: Vazirmatn;
  src: url(css/Vazirmatn-Medium.ttf);
}

/* برای سازگاری با مرورگرهای مختلف */
input::-webkit-input-placeholder {
  /* Chrome, Safari */
  color: white;
}
input:-moz-placeholder {
  /* Firefox قدیمی */
  color: white;
  opacity: 0.8;
}
input::-moz-placeholder {
  /* Firefox جدید */
  color: white;
  opacity: 0.8;
}
input:-ms-input-placeholder {
  /* Internet Explorer */
  color: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

body.filter-open {
  overflow: hidden;
}

/* اسکرول بار سفارشی */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-size: 200% 200%;
  animation: glow 5s ease infinite;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #60a5fa, #a78bfa);
}

/* انیمیشن برای اسکرول بار */
@keyframes glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* بهبود اسکرول افقی در موبایل */
.nav::-webkit-scrollbar {
  height: 3px;
}

.filter-bar::-webkit-scrollbar {
  height: 3px;
}

.blurred-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  opacity: 0.3;
  transition: background-image 0.5s ease-in-out;
  z-index: -1;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.movie-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.movie-card:hover {
  transform: translateY(-5px);
}

.glow {
  position: relative;
}

.glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #3b82f6);
  filter: blur(0px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow:hover::after {
  opacity: 1;
}

.sidebar-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #a0a0a0;
  transition: color 0.3s;
}

.active .sidebar-icon {
  color: white;
}

.container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 16rem;
  padding: 1.5rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  right: 0;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem;
  color: white;
  border-bottom: 1px solid #a0a0a0;
}

.nav {
  display: flex;
  margin: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #a0a0a0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  width: calc(100% + 2rem);
  border-radius: 0.5rem;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}

.nav-item:hover {
  color: white;
}

.nav-item.active {
  background-color: var(--accent);
  color: white;
}

.account-section {
  margin: 0rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #a0a0a0;
}

.account-label {
  color: #ffffff;
  margin-bottom: 1rem;
  padding: 0rem 1rem;
}

.account-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  color: #a0a0a0;
}

.account-item.active {
  color: white;
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  color: #a0a0a0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  font-size: 1rem;
  transition: color 0.3s;
}

.logout-btn:hover {
  color: white;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header {
  padding: 10px 10px;
  border-radius: 0.8rem;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: calc(100% - 20.5rem);
  top: 1rem;
  left: 2.5rem;
  backdrop-filter: blur(10px);
  z-index: 10;
}.header .glass{
    display: flex;
    flex: 1;
    padding: 0;
    background: none;
    backdrop-filter: none;
}

.search-container {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.search-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  height: 40px;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: none;
  outline: none;
  font-family: "Vazirmatn", sans-serif;
}

.search-input:focus {
  outline: 0px solid #3b82f6;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  color: #a0a0a0;
}

/* Mobile filter toggle */
.mobile-filter-toggle {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 0.5rem;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 0.5rem;
}

/* Search filters container */
.search-filters {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-right: 0.5rem;
}

/* Filter icon buttons */
.filter-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Vazirmatn", sans-serif;
  gap: 0.25rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40px;
  width: 80px;
}

.filter-icon span {
  font-size: 0.75rem;
}

.filter-icon.inactive {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #a0a0a0;
}

/* Advanced filter button */
.filter-btn-advanced {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Vazirmatn", sans-serif;
  gap: 0.25rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40px;
  width: 80px;
}

.filter-btn-advanced span {
  font-size: 0.75rem;
}

.filter-btn-advanced:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Filter panel */
.filter-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 500px;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}

.filter-panel.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Filter overlay */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.filter-overlay.show {
  opacity: 1;
  visibility: visible;
}

.filter-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-panel-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.close-filter-btn {
  background: none;
  border: none;
  color: #a0a0a0;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-filter-btn:hover {
  color: white;
}

.filter-panel-content {
  padding: 1rem;
}

.filter-section {
  margin-bottom: 1.5rem;
}

.filter-section h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #d1d5db;
}

/* Genre options */
.genre-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.genre-option {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  border: none;
  color: white;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  transition: all 0.3s ease;
}

.genre-option.selected {
  background-color: var(--play-btn-color);
}

/* Select styles */
.select-wrapper {
  position: relative;
  width: 100%;
}

.filter-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  appearance: none;
  font-family: "Vazirmatn", sans-serif;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #a0a0a0;
}

/* Rating slider */
.rating-slider {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  overflow: hidden;
  position: relative;
}

.rating-option {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.rating-option.selected {
  color: white;
}

.rating-option.selected::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--play-btn-color);
  z-index: -1;
  border-radius: 0.25rem;
}

.filter-panel-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reset-filter-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
}

.apply-filter-btn {
  background-color: var(--play-btn-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.birthday-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  height: calc(24px + 1rem);
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  cursor: pointer;
}

.notification-container {
  position: relative;
}

.notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ef4444;
  border-radius: 50%;
}

.user-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  background: #ffffff10;
}

.hero-slider {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 500px;
  margin-bottom: 3rem;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3rem;
  max-width: 32rem;
  text-align: right;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-genre {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--play-btn-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.play-btn:hover {
  background-color: #1d4ed8;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.see-all-btn {
  color: #60a5fa;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
}

.see-all-btn:hover {
  color: #93c5fd;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.movie-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.movie-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.movie-item:hover .movie-overlay {
  opacity: 1;
}

.movie-play-btn {
  background-color: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  transition: background-color 0.3s;
}

.movie-play-btn:hover {
  background-color: #b91c1c;
}

.favorite-btn {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.movie-item:hover .favorite-btn {
  opacity: 1;
}

.movie-info {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1rem;
  text-align: right;
  z-index: 2;
}

.movie-title {
  font-size: 1.125rem;
  font-weight: bold;
}

.movie-meta {
  font-size: 0.875rem;
  color: #d1d5db;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.filter-group {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.account-container {
  max-width: 32rem;
  margin: 0 auto;
}

.account-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.account-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.account-avatar {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 1rem;
  margin-right: 1rem;
}

.account-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.account-date {
  color: #9ca3af;
}

.form-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  font-family: "Vazirmatn", sans-serif;
}

.form-input:focus {
  outline: 2px solid #3b82f6;
}

.form-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  transition: background-color 0.3s;
}

.form-btn:hover {
  background-color: #1d4ed8;
}

.page-content {
  display: none;
}

.page-content.active {
  display: block;
}

.loading-indicator {
  text-align: center;
  padding: 2rem;
  color: #9ca3af;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: calc(var(--vh, 1vh) * 100);
  }

  .sidebar {
    width: 100%;
    height: 3.5249998093rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: unset;
    z-index: 100;
    padding: 0.5rem;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }

  .logo {
    display: none;
  }

  .nav {
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    border-bottom: none;
    overflow-x: auto;
  }

  .nav-item {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    width: auto;
  }

  .nav-item span {
    font-size: 0.75rem;
    display: none;
  }

  .account-section,
  .logout-btn {
    display: none;
  }

  .main-content {
    padding-bottom: 3.5rem;
  }

  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
  }.header .glass{
    display: flex;
    flex: 1;
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    background: none;
  }

  .header-right {
    gap: 0.75rem;
  }

  .birthday-btn {
    display: none;
  }

  .hero-slider {
    height: 250px;
  }

  .hero-content {
    padding: 1rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-genre {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .content {
    height: calc(var(--vh, 1vh) * 100 - 5rem);
  }

  /* Mobile filter styles */
  .search-filters {
    display: none;
  }

  .search-filters.show-mobile {
    display: flex;
    position: absolute;
    top: calc(100% + 5px);
    right: 5px;
    left: 5px;
    background: rgb(154 154 154 / 10%);
    padding: 0.5rem;
    border-radius: 0.8rem;
    width: calc(100% - 10px);
    margin: 0;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-filter-toggle {
    display: flex;
  }

  /* Filter panel mobile styles */
  .filter-panel {
    box-shadow: none;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 3.5rem;
    border-radius: 0;
    transform: translateY(100%);
    width: 100%;
    max-width: 100%;
  }

  .filter-panel.show {
    transform: translateY(0);
  }
}

@media (min-width: 769px) {
  /* Desktop filter panel styles */
  .filter-panel {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .filter-panel.show {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 480px) {
  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  ::-webkit-scrollbar {
    width: 3px;
    height: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background-size: 200% 200%;
    animation: glow 5s ease infinite;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
  }
  .movie-item {
    aspect-ratio: 2 / 3;
  }

  .movie-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }

  .movie-play-btn {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }

  .favorite-btn {
    opacity: 1;
    width: 1.5rem;
    height: 1.5rem;
  }

  .movie-info {
    padding: 0.5rem;
  }

  .filter-icon {
    padding: 0.25rem;
    width: 70px;
    flex: 1;
  }

  .filter-icon span {
  }

  .filter-btn-advanced {
    padding: 0.25rem;
    width: 70px;
  }

  .filter-btn-advanced {
    flex: 1;
  }
}

