/* ======================================== */
/* JWT GAMES                                */
/* ======================================== */

/* ======================================== */
/* RESET                                    */
/* ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================== */
/* ROOT                                     */
/* ======================================== */

:root {
  --bg: #09090B;
  --surface: #111114;
  --surface-2: #18181C;
  --surface-3: #202026;
  --border: rgba(255, 255, 255, 0.06);
  --text: #FFFFFF;
  --muted: #A1A1AA;
  --green: #22C55E;
  --green-soft: rgba(34, 197, 94, 0.14);
  --orange: #F59E0B;
  --orange-soft: rgba(245, 158, 11, 0.14);
  --red: #EF4444;
  --blue: #3B82F6;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --transition: 0.2s ease;
  --scrollbar-thumb: #27272A;
  --scrollbar-thumb-hover: #3F3F46;
  --hero-bg: linear-gradient(135deg, #16161A, #101012);
  --nav-bg: rgba(18, 18, 22, 0.95);
  --nav-text: #8B8B92;
  --search-bg: rgba(17,17,20,0.8);
  --search-bg-focus: rgba(24,24,28,0.9);
  --game-img-bg: #1A1A1D;
  --btn-icon-color: #FFFFFF;
  --placeholder-color-1: #1A1A1D;
  --placeholder-color-2: #2A2A30;
  --hero-title-gradient: linear-gradient(135deg, #FFFFFF, #22C55E);
}

[data-theme="light"] {
  --bg: #F5F5F7;
  --surface: #FFFFFF;
  --surface-2: #F0F0F2;
  --surface-3: #E5E5EA;
  --border: rgba(0, 0, 0, 0.08);
  --text: #1C1C1E;
  --muted: #8E8E93;
  --green-soft: rgba(34, 197, 94, 0.12);
  --orange-soft: rgba(245, 158, 11, 0.12);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --scrollbar-thumb: #D1D1D6;
  --scrollbar-thumb-hover: #AEAEB2;
  --hero-bg: linear-gradient(135deg, #FFFFFF, #F0F0F2);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-text: #8E8E93;
  --search-bg: rgba(255,255,255,0.95);
  --search-bg-focus: rgba(255,255,255,1);
  --game-img-bg: #E5E5EA;
  --btn-icon-color: #1C1C1E;
  --placeholder-color-1: #E5E5EA;
  --placeholder-color-2: #D1D1D6;
  --hero-title-gradient: linear-gradient(135deg, #1C1C1E, #22C55E);
}

/* ======================================== */
/* GLOBAL                                   */
/* ======================================== */

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

button {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.container {
  max-width: 1400px;
}

.app {
  padding-bottom: 130px;
}

/* ======================================== */
/* TOPBAR                                   */
/* ======================================== */

.topbar {
  height: 76px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.title {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.profile-btn {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: var(--surface-2);
  color: var(--btn-icon-color);
  transition: all var(--transition);
}

.profile-btn:hover {
  background: var(--surface-3);
}

/* ======================================== */
/* THEME TOGGLE                              */
/* ======================================== */

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: var(--surface-2);
  color: var(--btn-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--surface-3);
}

.theme-toggle i {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.theme-toggle.switching i {
  transform: rotate(180deg) scale(0.6);
  opacity: 0;
}

/* ======================================== */
/* NOTIFICATION BELL                         */
/* ======================================== */

.notif-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: var(--surface-2);
  color: var(--btn-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
}

.notif-btn:hover {
  background: var(--surface-3);
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--red, #EF4444);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ======================================== */
/* NOTIFICATION DIALOG                       */
/* ======================================== */

.notif-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px); z-index: 2000; display: flex;
  align-items: flex-start; justify-content: center;
  padding-top: 60px; animation: fadeIn 0.2s ease;
}

.notif-dialog {
  width: 100%; max-width: 480px; max-height: 75vh;
  background: var(--surface-2, #18181C); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; display: flex; flex-direction: column;
  animation: notifSlideIn 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@keyframes notifSlideIn {
  from { transform: translateY(-20px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.notif-dialog-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.notif-dialog-header h3 {
  font-size: 17px; font-weight: 800; margin: 0;
  display: flex; align-items: center; gap: 8px;
}

.notif-dialog-header h3 i { color: var(--green); }

.notif-close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--muted); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.notif-close-btn:hover { color: var(--text); background: var(--surface-3); }

.notif-mark-all {
  padding: 6px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); font-size: 11px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.notif-mark-all:hover { color: var(--green); border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.06); }

.notif-dialog-body {
  overflow-y: auto; flex: 1; padding: 8px 16px 16px;
}

.notif-item {
  display: flex; gap: 14px; padding: 14px 12px; border-radius: 14px;
  margin-top: 6px; background: var(--surface); border: 1px solid transparent;
  transition: all 0.2s; cursor: default;
}

.notif-item:hover { border-color: var(--border); background: var(--surface-3); }

.notif-item.unread { border-color: rgba(34,197,94,0.08); background: rgba(34,197,94,0.03); }

.notif-item .nf-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}

.notif-item .nf-body { flex: 1; min-width: 0; }

.notif-item .nf-title {
  font-size: 13px; font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 3px;
}

.notif-item .nf-msg {
  font-size: 12px; color: var(--muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.notif-item .nf-time {
  font-size: 10px; color: var(--muted); margin-top: 4px; font-weight: 600;
}

.notif-empty {
  text-align: center; padding: 48px 24px; color: var(--muted);
}

.notif-empty i { font-size: 40px; color: var(--surface-3); display: block; margin-bottom: 12px; }

/* ======================================== */
/* FEATURED GRID                             */
/* ======================================== */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.featured-card {
  display: flex; gap: 14px; padding: 16px;
  border-radius: 18px; background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: all 0.2s ease;
}

.featured-card:hover {
  background: var(--surface-2);
  border-color: rgba(34,197,94,0.18);
  transform: translateY(-2px);
  color: inherit;
}

.featured-card-img {
  width: 72px; height: 72px; border-radius: 14px;
  object-fit: cover; flex-shrink: 0;
  background: var(--surface-2);
}

.featured-card-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: center;
}

.featured-card-body h4 {
  font-size: 14px; font-weight: 700; margin: 0 0 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

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

/* ======================================== */
/* HERO                                     */
/* ======================================== */

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  background: var(--hero-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.badge-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.hero-title {
  margin-top: 20px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  max-width: 500px;
}

.hero-text {
  margin-top: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  font-size: 15px;
}

/* ======================================== */
/* SEARCH                                   */
/* ======================================== */

#searchContainer {
  animation: searchIn 0.35s ease;
}

@keyframes searchIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.search-box input {
  width: 100%;
  padding: 13px 44px 13px 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--search-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.search-box input::placeholder {
  color: var(--muted);
  opacity: 0.45;
}

.search-box input:focus {
  border-color: rgba(34,197,94,0.25);
  background: var(--search-bg-focus);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.05);
}

.search-box .search-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.25s ease;
}

.search-box:focus-within .search-icon {
  color: var(--green);
}

.search-box .search-clear {
  position: absolute;
  right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.search-box .search-clear:hover {
  background: var(--surface-3);
  color: var(--text);
}

/* ======================================== */
/* SECTION                                  */
/* ======================================== */

.section-header {
  margin-bottom: 22px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--green);
  border-radius: 999px;
}

/* ======================================== */
/* GRID                                     */
/* ======================================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

/* ======================================== */
/* CARD                                     */
/* ======================================== */

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  content-visibility: auto;
  contain-intrinsic-size: 320px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34, 197, 94, 0.12);
  background: var(--surface-2);
}

.game-card:active {
  transform: scale(0.96);
  transition: transform 0.1s ease;
}

.game-card.reveal {
  animation: cardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ======================================== */
/* IMAGE                                    */
/* ======================================== */

.game-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--game-img-bg);
  flex-shrink: 0;
}

.game-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 1;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* shimmer skeleton while image loads */
.game-card.img-loading .game-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.03) 40%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 60%,
    transparent 100%
  );
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%);  }
}

.game-card:hover .game-image img {
  transform: scale(1.08);
}

/* ======================================== */
/* CONTENT                                  */
/* ======================================== */

.game-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-content h3 {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.game-card:hover .game-content h3 {
  color: var(--green);
}

.game-content p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ======================================== */
/* BOTTOM NAV                               */
/* ======================================== */

.bottom-nav {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100vw - 28px);
  max-width: 520px;
  height: 78px;
  padding: 0 10px;
  border-radius: 32px;
  background: var(--nav-bg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.nav-item {
  position: relative;
  flex: 1;
  height: 60px;
  color: var(--nav-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 22px;
  transition: color 0.2s ease;
}

.nav-item i {
  font-size: 18px;
  z-index: 1;
}

.nav-item span {
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.nav-item::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-item.active {
  color: var(--green);
}

.nav-item.active::before {
  opacity: 1;
}

/* ======================================== */
/* SKELETON                                  */
/* ======================================== */

.skeleton-card {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  content-visibility: auto;
  contain-intrinsic-size: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.skeleton-card::before {
  content: '';
  display: block;
  aspect-ratio: 4/3;
  background: linear-gradient(
    90deg,
    var(--surface-2) 0%,
    var(--surface-3) 40%,
    var(--surface-2) 60%,
    var(--surface-2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

.skeleton-card::after {
  content: '';
  flex: 1;
  min-height: 50px;
  background: var(--surface);
}

/* ======================================== */
/* SCROLL LOADER                             */
/* ======================================== */

.scroll-loader {
  grid-column: 1 / -1;
  padding: 32px 24px;
}

.scroll-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.scroll-loader .spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid var(--surface-3);
  border-top-color: var(--green);
  animation: spin 0.6s linear infinite;
}

.scroll-loader p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ======================================== */
/* EMPTY / ERROR                             */
/* ======================================== */

.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 64px 24px;
  text-align: center;
}

.empty-state i {
  font-size: 48px;
  color: var(--surface-3);
}

.empty-state p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.retry-btn {
  padding: 12px 28px;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.retry-btn:hover {
  background: var(--surface-3);
  border-color: var(--green);
  color: var(--green);
}

/* ======================================== */
/* ANIMATIONS                               */
/* ======================================== */

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ======================================== */
/* PAGE TRANSITIONS                          */
/* ======================================== */

/* Hero — smooth enter/exit */
#heroSection {
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow: hidden;
  will-change: auto;
}

#heroSection.hero-exit {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  will-change: transform, opacity;
}

#heroSection.hero-enter {
  animation: heroEnter 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(-20px) translateZ(0); }
  to   { opacity: 1; transform: translateY(0) translateZ(0); }
}

/* Search — smooth exit (enter is handled by #searchContainer animation) */
#searchContainer {
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: auto;
}

#searchContainer.search-exit {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Featured section */
#featuredSection {
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: auto;
}

#featuredSection.section-exit {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Section title crossfade */
.section-title {
  transition: opacity 0.25s ease;
}

.section-title.title-fade {
  opacity: 0;
}

/* Grid page enter — staggered card reveal (GPU-composited) */
.games-grid.page-enter .game-card {
  animation: cardPageIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

@keyframes cardPageIn {
  from { opacity: 0; transform: translateY(28px) scale(0.90) translateZ(0); }
  to   { opacity: 1; transform: translateY(0) scale(1) translateZ(0); }
}

/* ======================================== */
/* TABLET                                   */
/* ======================================== */

@media(max-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}

/* ======================================== */
/* MOBILE                                   */
/* ======================================== */

@media(max-width: 768px) {
  .hero-card {
    padding: 28px;
  }

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

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .game-card {
    contain-intrinsic-size: 280px;
  }

  .bottom-nav {
    height: 74px;
    border-radius: 28px;
  }

  .nav-item {
    height: 56px;
  }

  .nav-item i {
    font-size: 17px;
  }
}

/* ======================================== */
/* SMALL MOBILE                             */
/* ======================================== */

@media(max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 14px;
  }

  .game-card {
    contain-intrinsic-size: 260px;
  }

  .game-content {
    padding: 15px;
  }
}
