:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --ink: #17202c;
  --muted: #647084;
  --line: #d9e0ea;
  --red: #ff244d;
  --cyan: #12d8e8;
  --green: #2bb673;
  --brand: #3ecf8e;
  --brand-strong: #2bb673;
  --brand-deep: #148055;
  --brand-ink: #04291a;
  --discord: #5865f2;
  --shadow: 0 24px 70px rgba(23, 32, 44, 0.16);
  --shadow-soft: 0 12px 26px rgba(23, 32, 44, 0.1);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 248, 251, 0.96)),
    var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  background: var(--ink);
  color: white;
  font-weight: 760;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.platforms {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.icon-link:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.icon-link svg {
  width: 24px;
  fill: var(--ink);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
}

.nav-toggle .cross {
  display: none;
}

.nav-open .nav-toggle .bars {
  display: none;
}

.nav-open .nav-toggle .cross {
  display: block;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 36px 0 60px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 10vw, 8.4rem);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

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

.button svg {
  width: 18px;
  fill: currentColor;
}

.button-primary {
  border-color: var(--brand-strong);
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 12px 26px rgba(62, 207, 142, 0.32);
}

.button-primary:hover {
  background: #34c283;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.star-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.star-cta:hover {
  transform: translateY(-1px);
  border-color: var(--brand-strong);
  color: var(--ink);
}

.star-cta svg {
  width: 16px;
  fill: #f5a623;
}

.star-count:not(:empty) {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.version-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.platforms {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.platforms span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #3b4657;
  font-size: 0.84rem;
  font-weight: 760;
}

.product-shot {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(18, 216, 232, 0.36), transparent 32%),
    radial-gradient(circle at 80% 8%, rgba(62, 207, 142, 0.42), transparent 28%),
    linear-gradient(135deg, #1c2431, #1f3a2e 46%, #f3f7fb);
  box-shadow: var(--shadow);
  text-align: left;
  overflow: hidden;
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(18, 25, 35, 0.22);
}

.window-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
}

.window-brand img {
  width: 34px;
  height: 34px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 18px;
  padding: 20px;
}

.chat-panel,
.control-panel > div,
.overlay-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.chat-panel {
  padding: 18px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(43, 182, 115, 0.14);
}

.chat-message {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--surface-soft);
}

.chat-message:first-of-type {
  border-top: 0;
}

.chat-message strong,
.chat-message p {
  overflow-wrap: anywhere;
}

.chat-message p {
  margin: 4px 0 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  justify-content: center;
  width: 74px;
  padding: 6px 8px;
  border-radius: 999px;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.tiktok {
  background: var(--red);
}

.twitch {
  background: #7046d9;
}

.youtube {
  background: #d92d2d;
}

.control-panel {
  display: grid;
  gap: 14px;
}

.control-panel > div {
  padding: 18px;
}

.control-panel span,
.overlay-preview span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.control-panel strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.meter {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}

.meter span {
  width: 72%;
  height: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.stats-band,
.section,
.download-section,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 0 86px;
}

.stats-band div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.stats-band strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-deep);
  font-size: 1.55rem;
}

.stats-band span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.download-section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 78px;
}

.section-heading {
  width: min(680px, 100%);
  margin-bottom: 34px;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-grid p,
.split-section p,
.download-section p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.overlay-preview {
  display: grid;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(18, 216, 232, 0.12), rgba(62, 207, 142, 0.12)),
    var(--surface);
}

.gift-alert,
.likes-row,
.followers-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.gift-alert {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.gift-alert p {
  margin: 4px 0 0;
}

.gift-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0;
}

.likes-row,
.followers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.likes-row span,
.followers-row span {
  margin: 0;
}

/* ── Apoyo: donaciones + comunidad + redes ── */

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.donation-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.donation-card--main {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.donation-card--main:hover {
  transform: translateY(-2px);
  border-color: var(--brand-strong);
  box-shadow: var(--shadow-soft);
}

.donation-cta {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand-strong);
  font-weight: 760;
  font-size: 0.92rem;
}

.crypto-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.crypto-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.donation-card--compact {
  padding: 16px;
}

.donation-card--compact .donation-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.donation-card--compact h3 {
  margin: 0;
  font-size: 0.88rem;
}

.donation-card--compact .copy-row {
  margin-top: 8px;
}

.donation-card--compact .copy-row input {
  min-height: 36px;
  font-size: 0.76rem;
}

.donation-card--compact .copy-btn {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.donation-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--surface-soft);
  font-size: 1.3rem;
}

.donation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.copy-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.copy-row input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  text-overflow: ellipsis;
}

.copy-row input:focus {
  outline: none;
  border-color: var(--brand-strong);
}

.copy-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--brand-strong);
  border-radius: 8px;
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 0.88rem;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.copy-btn.copied {
  border-color: var(--brand-deep);
  background: var(--brand-deep);
  color: white;
}

.discord-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(255, 255, 255, 0.9)),
    var(--surface);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.discord-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.18);
}

.discord-banner svg {
  flex-shrink: 0;
  width: 34px;
  fill: var(--discord);
}

.discord-banner strong {
  display: block;
}

.discord-banner p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.discord-banner .go {
  margin-left: auto;
  color: var(--discord);
  font-weight: 760;
  white-space: nowrap;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.social-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  fill: var(--ink);
  transition: fill 160ms ease;
}

.social-card h3 {
  margin: 0;
  font-size: 1rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.social-yt:hover svg {
  fill: #d92d2d;
}

.social-tt:hover svg {
  fill: var(--red);
}

.social-tw:hover svg {
  fill: #7046d9;
}

.social-kick:hover svg {
  fill: #16a34a;
}

.download-section {
  text-align: center;
}

.download-section h2 {
  width: min(820px, 100%);
  margin: 0 auto 28px;
}

/* ── Footer ── */

.site-footer {
  padding: 56px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand .brand {
  color: var(--ink);
}

.footer-brand p {
  max-width: 320px;
  margin: 14px 0 18px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  border-color: var(--muted);
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: var(--ink);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  padding: 6px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-main code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.86em;
}

/* ── Selector de idioma ── */

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-link:hover {
  border-color: var(--brand-strong);
  color: var(--ink);
}

/* ── Páginas interiores (blog, legal) ── */

.page-main {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 90px;
}

.page-main h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
}

.page-main h2 {
  margin-top: 40px;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.2;
}

.page-main p,
.page-main li {
  color: var(--muted);
  line-height: 1.75;
}

.page-main strong {
  color: var(--ink);
}

.page-main a:not(.button) {
  color: var(--brand-deep);
  font-weight: 600;
}

.page-main a:not(.button):hover {
  text-decoration: underline;
}

.page-meta {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.post {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.post h2 {
  margin-top: 0;
}

/* ── Reveal on scroll ── */

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ── */

@media (max-width: 820px) {
  .site-header {
    background: rgba(247, 248, 251, 0.9);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 16px 14px;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 4px;
    border-top: 1px solid var(--surface-soft);
    color: var(--ink);
    font-size: 1rem;
  }

  .nav-links a:first-child {
    border-top: 0;
  }

  .hero {
    padding-top: 26px;
  }

  .app-grid,
  .feature-grid,
  .split-section,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 58px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section,
  .download-section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .stats-band,
  .section,
  .download-section,
  .site-footer {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .button {
    width: 100%;
  }

  .product-shot {
    padding: 12px;
  }

  .window-topbar,
  .app-grid {
    padding: 14px;
  }

  .chat-message {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .badge {
    width: max-content;
  }

  .gift-alert {
    grid-template-columns: 1fr;
  }

  .stats-band {
    gap: 10px;
  }

  .stats-band div {
    padding: 16px;
  }

  .copy-row {
    flex-direction: column;
  }

  .copy-row input {
    text-align: center;
  }

  .discord-banner {
    flex-wrap: wrap;
    padding: 18px;
  }

  .discord-banner .go {
    width: 100%;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
