@charset "utf-8";
/*!
 * 1xbrt.homes - Core stylesheet (basefiles)
 * Palette: #FFA500 | #FDF5E6 | #DEB887 | #F4A460 | #273746
 * All custom classes use the g6ea- prefix for namespace isolation.
 * Mobile-first canvas: 320-430px. Centered on wider screens.
 */

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --g6ea-c-primary: #FFA500;
  --g6ea-c-cream: #FDF5E6;
  --g6ea-c-burlywood: #DEB887;
  --g6ea-c-sand: #F4A460;
  --g6ea-c-dark: #273746;
  --g6ea-c-dark-2: #1d2934;
  --g6ea-c-dark-3: #0f1720;
  --g6ea-c-text: #FDF5E6;
  --g6ea-c-focus: #fff;
  --g6ea-motion: cubic-bezier(0.22, 0.61, 0.36, 1);
  --g6ea-c-muted: #c9b48d;
  --g6ea-c-line: rgba(222, 180, 135, 0.22);
  --g6ea-c-gold: #FFD27A;
  --g6ea-radius: 14px;
  --g6ea-shadow-card: 0 8px 22px rgba(0, 0, 0, 0.32);
}
html, body {
  background: var(--g6ea-c-dark);
  color: var(--g6ea-c-text);
  font-family: "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
a { color: var(--g6ea-c-gold); text-decoration: none; }
a:hover, a:focus { color: #fff; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- App frame (mobile canvas centered on wide screens) ---------- */
.g6ea-app {
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #273746 0%, #1a2530 60%, #0f1720 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.45);
}

/* ---------- Header ---------- */
.g6ea-header {
  position: sticky;
  min-height: 58px;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.96), rgba(39, 55, 70, 0.92));
  border-bottom: 1px solid var(--g6ea-c-line);
  backdrop-filter: blur(6px);
}
.g6ea-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.g6ea-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 165, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.25);
}
.g6ea-brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.g6ea-brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.4px;
  color: #fff;
}
.g6ea-brand-tag {
  font-size: 10px;
  color: var(--g6ea-c-burlywood);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.g6ea-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--g6ea-c-line);
  background: rgba(255, 165, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.g6ea-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--g6ea-c-primary);
  border-radius: 2px;
}
.g6ea-auth { display: flex; align-items: center; gap: 6px; }
.g6ea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.g6ea-btn:active { transform: scale(0.96); }
.g6ea-btn-login {
  background: transparent;
  border: 1.5px solid var(--g6ea-c-primary);
  color: var(--g6ea-c-primary);
  padding: 8px 13px;
}
.g6ea-btn-register {
  background: linear-gradient(135deg, #FFA500, #F4A460);
  color: #1a1207;
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.32);
}

/* ---------- Mobile slide-down menu ---------- */
.g6ea-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.g6ea-menu-overlay.g6ea-menu-open { opacity: 1; pointer-events: auto; }
.g6ea-mobile-menu nav a { min-height: 44px; display: flex; align-items: center; }
.g6ea-menu-btn:focus-visible, .g6ea-btn:focus-visible, .g6ea-nav-item:focus-visible, .g6ea-menu-close:focus-visible { outline: 3px solid var(--g6ea-c-focus); outline-offset: 2px; }
.g6ea-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  max-width: 80%;
  background: var(--g6ea-c-dark-2);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 18px 16px;
  overflow-y: auto;
  border-left: 1px solid var(--g6ea-c-line);
}
.g6ea-mobile-menu.g6ea-menu-open { transform: translateX(0); }
.g6ea-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--g6ea-c-line);
}
.g6ea-menu-head strong { color: #fff; font-size: 16px; }
.g6ea-menu-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--g6ea-c-line);
  color: var(--g6ea-c-primary);
  font-size: 18px;
}
.g6ea-mobile-menu nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--g6ea-c-cream);
  font-weight: 600;
  margin-bottom: 4px;
  border: 1px solid transparent;
}
.g6ea-mobile-menu nav a:hover,
.g6ea-mobile-menu nav a:focus {
  background: rgba(255, 165, 0, 0.10);
  border-color: var(--g6ea-c-line);
}
.g6ea-menu-cta { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }

/* ---------- Hero / Carousel ---------- */
.g6ea-main { padding-bottom: 92px; }
.g6ea-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--g6ea-c-line);
}
.g6ea-hero-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.g6ea-hero-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 200px;
}
.g6ea-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
}
.g6ea-hero-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  z-index: 2;
}
.g6ea-hero-caption h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  margin-bottom: 6px;
}
.g6ea-hero-caption p {
  font-size: 12.5px;
  color: #ffe7c2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
  max-width: 88%;
}
.g6ea-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.g6ea-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(253, 245, 230, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.g6ea-hero-dot.g6ea-active {
  background: var(--g6ea-c-primary);
  transform: scale(1.25);
}

/* ---------- Quick CTA strip ---------- */
.g6ea-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(244, 164, 96, 0.10), transparent);
}
.g6ea-quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid var(--g6ea-c-line);
  border-radius: 12px;
  color: var(--g6ea-c-cream);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}
.g6ea-quick .g6ea-q-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g6ea-c-primary), var(--g6ea-c-sand));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #1a1207; font-weight: 800;
}

/* ---------- Section shells ---------- */
.g6ea-section { padding: 18px 12px 6px; }
.g6ea-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.g6ea-section-head h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-left: 12px;
}
.g6ea-section-head h2::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--g6ea-c-primary), var(--g6ea-c-sand));
}
.g6ea-section-head a.more { color: var(--g6ea-c-burlywood); font-size: 12px; font-weight: 600; }

/* ---------- Category tabs ---------- */
.g6ea-cats {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 6px 12px 10px;
  scrollbar-width: none;
}
.g6ea-cats::-webkit-scrollbar { display: none; }
.g6ea-cat-tab {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--g6ea-c-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--g6ea-c-cream);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.g6ea-cat-tab.g6ea-cat-active {
  background: linear-gradient(135deg, var(--g6ea-c-primary), var(--g6ea-c-sand));
  color: #1a1207;
  border-color: transparent;
}

/* ---------- Game grid ---------- */
.g6ea-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.g6ea-game {
  background: var(--g6ea-c-dark-2);
  border: 1px solid var(--g6ea-c-line);
  border-radius: var(--g6ea-radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.g6ea-game:active {
  transform: translateY(-2px) scale(0.985);
  box-shadow: var(--g6ea-shadow-card);
}
.g6ea-game .g6ea-game-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0c141c;
  overflow: hidden;
}
.g6ea-game .g6ea-game-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.g6ea-game-badge {
  position: absolute;
  top: 5px; left: 5px;
  background: rgba(255, 165, 0, 0.92);
  color: #1a1207;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.g6ea-game-play {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.g6ea-game:hover .g6ea-game-play,
.g6ea-game:active .g6ea-game-play { opacity: 1; }
.g6ea-game-play span {
  background: var(--g6ea-c-primary);
  color: #1a1207;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.g6ea-game-name {
  padding: 6px 7px 8px;
  font-size: 11.5px;
  color: var(--g6ea-c-cream);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 5-column variant for slot rows */
.g6ea-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 6px; }
.g6ea-grid-5 .g6ea-game-name { font-size: 10.5px; padding: 5px 4px 6px; }

/* Horizontal scroll row */
.g6ea-row-x {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 42%;
  gap: 9px;
  overflow-x: auto;
  padding: 4px 12px 10px;
  scrollbar-width: none;
}
.g6ea-row-x::-webkit-scrollbar { display: none; }
.g6ea-row-x .g6ea-game-name { font-size: 12px; }

/* ---------- Promo banner ---------- */
.g6ea-promo {
  margin: 8px 12px;
  padding: 16px 14px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 165, 0, 0.35), transparent 60%),
              linear-gradient(135deg, #2c3e50, #1a2530);
  border: 1px solid var(--g6ea-c-line);
  position: relative;
  overflow: hidden;
}
.g6ea-promo h3 {
  color: var(--g6ea-c-gold);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}
.g6ea-promo p {
  color: var(--g6ea-c-cream);
  font-size: 12.5px;
  margin-bottom: 10px;
}
.g6ea-promo .g6ea-btn-register { display: inline-flex; }

/* ---------- Feature / why us ---------- */
.g6ea-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  padding: 4px 12px;
}
.g6ea-feature {
  padding: 12px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--g6ea-c-line);
  border-radius: 12px;
}
.g6ea-feature-ic {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--g6ea-c-primary), var(--g6ea-c-sand));
  color: #1a1207;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 15px;
}
.g6ea-feature h4 { color: #fff; font-size: 13.5px; margin-bottom: 3px; }
.g6ea-feature p { color: var(--g6ea-c-muted); font-size: 11.5px; line-height: 1.45; }

/* ---------- SEO content blocks ---------- */
.g6ea-content {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--g6ea-c-line);
  border-bottom: 1px solid var(--g6ea-c-line);
  margin-top: 14px;
}
.g6ea-content h2 {
  font-size: 17px;
  color: var(--g6ea-c-gold);
  font-weight: 800;
  margin: 14px 0 7px;
}
.g6ea-content h2:first-child { margin-top: 0; }
.g6ea-content h3 {
  font-size: 14.5px;
  color: #fff;
  margin: 10px 0 5px;
  font-weight: 700;
}
.g6ea-content p {
  color: var(--g6ea-c-cream);
  font-size: 13.2px;
  margin-bottom: 8px;
  line-height: 1.7;
}
.g6ea-content ul { padding-left: 18px; margin-bottom: 8px; list-style: disc; }
.g6ea-content ul li { color: var(--g6ea-c-cream); font-size: 13px; margin-bottom: 3px; }
.g6ea-content a { color: var(--g6ea-c-primary); text-decoration: underline; text-underline-offset: 2px; }

.g6ea-faq { padding: 6px 14px 4px; }
.g6ea-faq-item {
  border: 1px solid var(--g6ea-c-line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.g6ea-faq-q { font-weight: 700; color: var(--g6ea-c-gold); font-size: 13.3px; margin-bottom: 4px; }
.g6ea-faq-a { color: var(--g6ea-c-cream); font-size: 12.6px; line-height: 1.6; }

/* ---------- Footer ---------- */
.g6ea-footer {
  background: var(--g6ea-c-dark-3);
  border-top: 1px solid var(--g6ea-c-line);
  padding: 18px 14px 24px;
}
.g6ea-footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.g6ea-footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
.g6ea-footer-brand strong { color: #fff; font-size: 16px; }
.g6ea-footer-brand small { color: var(--g6ea-c-muted); display: block; font-size: 11px; }
.g6ea-footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.g6ea-footer-cols h5 {
  color: var(--g6ea-c-burlywood);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.g6ea-footer-cols a {
  display: block;
  color: var(--g6ea-c-cream);
  font-size: 12.5px;
  margin-bottom: 5px;
}
.g6ea-footer-cols a:hover { color: var(--g6ea-c-primary); }
.g6ea-footer-resp {
  background: rgba(255, 165, 0, 0.06);
  border: 1px dashed var(--g6ea-c-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11.5px;
  color: var(--g6ea-c-muted);
  margin-bottom: 12px;
}
.g6ea-footer-copy {
  text-align: center;
  font-size: 11px;
  color: var(--g6ea-c-muted);
  padding-top: 10px;
  border-top: 1px solid var(--g6ea-c-line);
}

/* ---------- Bottom navigation ---------- */
.g6ea-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 430px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.98), rgba(10, 16, 22, 1));
  border-top: 1px solid var(--g6ea-c-line);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  z-index: 45;
}
.g6ea-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 5px 2px;
  color: var(--g6ea-c-muted);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}
.g6ea-nav-item .g6ea-nav-ico { width: 22px; height: 22px; display: block; }
.g6ea-nav-item .g6ea-nav-ico svg { width: 100%; height: 100%; fill: currentColor; }
.g6ea-nav-item.g6ea-nav-current,
.g6ea-nav-item:active {
  color: var(--g6ea-c-primary);
  transform: translateY(-2px);
}
.g6ea-nav-item::after { content: ""; width: 0; height: 2px; border-radius: 2px; background: var(--g6ea-c-primary); transition: width .2s ease; }
.g6ea-nav-item.g6ea-nav-current::after { width: 18px; }
.g6ea-nav-item.g6ea-nav-promo {
  color: #1a1207;
  background: linear-gradient(135deg, var(--g6ea-c-primary), var(--g6ea-c-sand));
  border-radius: 14px;
  position: relative;
  top: -8px;
  box-shadow: 0 6px 14px rgba(255, 165, 0, 0.4);
}
.g6ea-nav-item.g6ea-nav-promo .g6ea-nav-ico { width: 24px; height: 24px; }
.g6ea-nav-item.g6ea-nav-promo .g6ea-nav-ico svg { fill: #1a1207; }
.g6ea-nav-item.g6ea-nav-promo span { font-weight: 800; }

/* ---------- Back to top ---------- */
.g6ea-top-btn {
  position: fixed;
  right: 14px;
  bottom: 88px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--g6ea-c-primary);
  color: #1a1207;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}
.g6ea-top-btn.g6ea-top-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.g6ea-page-title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.g6ea-page-content { margin-top: 14px; }
.g6ea-page-content h1 { color: #fff; font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
.g6ea-lead { color: var(--g6ea-c-cream); font-size: 14px; line-height: 1.7; border-left: 3px solid var(--g6ea-c-primary); padding-left: 10px; }
.g6ea-steps { list-style: decimal; padding-left: 22px; margin: 8px 0 12px; }
.g6ea-steps li { color: var(--g6ea-c-cream); font-size: 13px; margin: 7px 0; }
.g6ea-checklist { list-style: none !important; padding-left: 0 !important; }
.g6ea-checklist li { border-bottom: 1px solid var(--g6ea-c-line); padding: 8px 0 8px 22px; position: relative; }
.g6ea-checklist li::before { content: "✓"; color: var(--g6ea-c-primary); position: absolute; left: 0; font-weight: 800; }
.g6ea-definition { display: grid; gap: 5px; }
.g6ea-definition dt { color: var(--g6ea-c-gold); font-weight: 800; font-size: 13px; }
.g6ea-definition dd { color: var(--g6ea-c-cream); font-size: 12.8px; margin: 0 0 7px; }
.g6ea-payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 12px 0; }
.g6ea-payment-grid div { background: rgba(255,165,0,.07); border: 1px solid var(--g6ea-c-line); border-radius: 10px; padding: 10px; min-height: 88px; }
.g6ea-payment-grid strong { display: block; color: var(--g6ea-c-gold); font-size: 12px; margin-bottom: 5px; }
.g6ea-payment-grid span { color: var(--g6ea-c-cream); display: block; font-size: 11.5px; line-height: 1.45; }
.g6ea-callout { border: 1px dashed var(--g6ea-c-primary); border-radius: 10px; padding: 12px; background: rgba(255,165,0,.08); }
.g6ea-info-module { margin: 14px 12px 0; border-radius: 12px; }

/* ---------- Helpers ---------- */
.g6ea-hidden { display: none !important; }
.g6ea-text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (min-width: 414px) {
  .g6ea-grid { gap: 10px; }
  .g6ea-hero-caption h2 { font-size: 24px; }
}
