/* Nexar Docs — shell = même DA que l’accueil ; blocs contenu = layout doc */

:root {
  --bg: #111318;
  --panel: #181b22;
  --panel-2: #1e222b;
  --border: rgba(255, 255, 255, 0.06);
  --text: #eaedf2;
  --muted: rgba(234, 237, 242, 0.55);
  --gold: #f4c24f;
  --cyan: #48c8ff;
  --discord: #5865f2;
  --danger: #7f1d1d;
  --danger-border: #ef4444;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 200;
  background: var(--gold);
  color: #1a1508;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 0.75rem;
}

.g {
  color: var(--gold);
}
.c {
  color: var(--cyan);
}

/* ═══ NAV (identique à l’accueil) ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 64px;
  background: rgba(17, 19, 24, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  height: 100%;
  max-width: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(234, 237, 242, 0.7);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #eaedf2;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #eaedf2;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-primary {
  background: #f4c24f;
  color: #1a1508;
  border-color: #f4c24f;
  box-shadow: 0 6px 18px rgba(244, 194, 79, 0.18);
}

.btn-primary:hover {
  background: #f0b83a;
  border-color: #f0b83a;
  box-shadow: 0 8px 22px rgba(244, 194, 79, 0.26);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger svg {
  width: 24px;
  height: 24px;
  stroke: #eaedf2;
  stroke-width: 2;
  stroke-linecap: round;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem) 1.1rem;
  background: rgba(17, 19, 24, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drawer a {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(234, 237, 242, 0.75);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-drawer a:last-child {
  border-bottom: none;
}

/* ═══ LAYOUT ═══ */
.docs-layout {
  display: flex;
  margin-top: 64px;
  min-height: calc(100vh - 64px);
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 2rem;
  gap: 1.25rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ SIDEBAR ═══ */
.sidebar {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  width: 280px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 0.75rem 1.25rem;
  z-index: 40;
  flex-shrink: 0;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.sidebar-title {
  padding: 0.85rem 0.75rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 244, 245, 0.35);
}

.sidebar-search {
  position: relative;
  padding: 0 0.35rem;
  margin-bottom: 0.5rem;
}

.sidebar-search input {
  width: 100%;
  height: 40px;
  padding: 0 0.85rem 0 2.35rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  font-size: 0.84rem;
  font-family: inherit;
  outline: none;
}

.sidebar-search input:focus {
  border-color: rgba(244, 194, 79, 0.45);
}

.sidebar-search input::placeholder {
  color: rgba(244, 244, 245, 0.32);
}

.sidebar-search svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  stroke: rgba(244, 244, 245, 0.35);
  stroke-width: 2;
  fill: none;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.15rem 0.2rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(244, 244, 245, 0.55);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}

.sidebar-nav a .nav-ico {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  flex-shrink: 0;
}

.sidebar-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

/* ═══ CONTENT PANEL ═══ */
.docs-content {
  flex: 1;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem clamp(1.25rem, 3vw, 2.25rem) 2.5rem;
}

.breadcrumb {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.35);
  margin-bottom: 1rem;
}

.docs-content h1 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.55rem;
  scroll-margin-top: 90px;
}

.docs-content .intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.docs-content .intro strong {
  color: var(--text);
}

.docs-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0.7rem 0 1rem;
  max-width: 720px;
}

.docs-content p a,
.docs-content li a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.docs-content code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82em;
  color: var(--gold);
  background: rgba(244, 194, 79, 0.08);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

.feature-card {
  margin: 1.2rem 0 1.6rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  max-width: 720px;
}

.feature-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.45);
  margin-bottom: 0.65rem;
}

.feature-card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.feature-card li {
  font-size: 0.9rem;
  color: rgba(244, 244, 245, 0.78);
  padding-left: 1rem;
  position: relative;
}

.feature-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 1rem 0 1.6rem;
  max-width: 720px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(244, 244, 245, 0.72);
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  font-weight: 800;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
}

.steps li strong {
  color: var(--text);
}

.cat-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 90px;
}

.cat-section h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
  scroll-margin-top: 90px;
}

.cat-section h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.5rem 0 0.55rem;
  scroll-margin-top: 90px;
}

.warn-box,
.info-box,
.danger-box {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  margin: 1.1rem 0 1.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 720px;
}

.warn-box {
  background: rgba(244, 194, 79, 0.06);
  border: 1px solid rgba(244, 194, 79, 0.18);
  color: rgba(244, 244, 245, 0.78);
}

.info-box {
  background: rgba(72, 200, 255, 0.06);
  border: 1px solid rgba(72, 200, 255, 0.14);
  color: rgba(244, 244, 245, 0.75);
}

.danger-box {
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(239, 68, 68, 0.55);
  color: rgba(254, 226, 226, 0.92);
}

.warn-box .info-icon,
.info-box .info-icon,
.danger-box .info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 1px;
}

.warn-box .info-icon {
  background: rgba(244, 194, 79, 0.15);
  color: var(--gold);
}
.info-box .info-icon {
  background: rgba(72, 200, 255, 0.15);
  color: var(--cyan);
}
.danger-box .info-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.checklist {
  list-style: none;
  margin: 0.6rem 0 1.4rem;
  max-width: 720px;
}

.checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  font-size: 0.9rem;
  color: rgba(244, 244, 245, 0.72);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 3px;
  border: 1.5px solid rgba(244, 194, 79, 0.55);
  background: rgba(244, 194, 79, 0.08);
}

/* Legacy tables hidden after JS transform; keep readable if JS off */
.cmd-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
}

.cmd-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(244, 244, 245, 0.35);
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--border);
}

.cmd-table td {
  padding: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
  font-size: 0.86rem;
}

.cmd-table .cmd-name {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.cmd-table .cmd-desc {
  color: var(--muted);
  line-height: 1.5;
}

/* ═══ CrowBots-style command list ═══ */
.cmd-list {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.cmd-list-head {
  padding: 0.85rem 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: rgba(244, 244, 245, 0.55);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.cmd-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.cmd-row:last-child {
  border-bottom: none;
}

.cmd-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.cmd-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.28rem 0.55rem;
  white-space: nowrap;
}

.cmd-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
  padding: 0.22rem 0.45rem;
  flex-shrink: 0;
}

.cmd-badge[data-tone="gold"] {
  background: #a16207;
}
.cmd-badge[data-tone="cyan"] {
  background: #0369a1;
}
.cmd-badge[data-tone="red"] {
  background: #b91c1c;
}
.cmd-badge[data-tone="green"] {
  background: #15803d;
}
.cmd-badge[data-tone="blue"] {
  background: #1d4ed8;
}
.cmd-badge[data-tone="purple"] {
  background: #7e22ce;
}
.cmd-badge[data-tone="orange"] {
  background: #c2410c;
}

.cmd-text {
  flex: 1;
  min-width: 140px;
  font-size: 0.84rem;
  color: rgba(244, 244, 245, 0.62);
  line-height: 1.4;
}

.cmd-copy {
  margin-left: auto;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(244, 244, 245, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.cmd-copy:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.cmd-copy.is-copied {
  border-color: #22c55e;
  color: #86efac;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel-2);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  background: transparent;
  border: none;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
}

.faq-q .faq-toggle {
  color: rgba(244, 244, 245, 0.45);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
}

.faq-a {
  display: none;
  padding: 0 1.05rem 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-toggle {
  color: var(--gold);
}

/* Footer (identique à l’accueil) */
.footer {
  position: relative;
  z-index: 1;
  background: #111318;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem clamp(1.25rem, 4vw, 3rem);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.84rem;
  color: rgba(234, 237, 242, 0.62);
}

.footer-links a:hover {
  color: #f4c24f;
}

.footer-copy {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: rgba(234, 237, 242, 0.55);
}

.sidebar-toggle {
  display: none;
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.55);
}

.sidebar-overlay.show {
  display: block;
}

/* Discord FAB */
.nexar-discord-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.nexar-discord-fab__ring,
.nexar-discord-fab__ring--delay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(88, 101, 242, 0.45);
  z-index: 0;
  animation: nexar-fab-ring 2s ease-out infinite;
  will-change: transform, opacity;
}

.nexar-discord-fab__ring--delay {
  animation-delay: 1s;
}

.nexar-discord-fab__btn {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #5865f2;
  color: #fff;
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.5);
  animation: nexar-fab-bob 2.4s ease-in-out infinite;
  will-change: transform;
}

.nexar-discord-fab__btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.nexar-discord-fab:hover .nexar-discord-fab__btn {
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow:
    0 14px 32px rgba(88, 101, 242, 0.55),
    0 0 0 6px rgba(88, 101, 242, 0.18);
}

.nexar-discord-fab:focus-visible .nexar-discord-fab__btn {
  outline: 2px solid #48c8ff;
  outline-offset: 4px;
}

@keyframes nexar-fab-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes nexar-fab-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 980px) {
  .docs-layout {
    padding: 0.75rem;
    display: block;
  }

  .sidebar {
    position: fixed;
    top: 64px;
    left: 0;
    bottom: 0;
    max-height: none;
    width: min(320px, 88vw);
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    z-index: 50;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-left {
    gap: 0;
  }

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

  .cmd-copy {
    width: 100%;
    margin-left: 0;
  }

  .cmd-row {
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .docs-content {
    padding: 1.2rem 1rem 2rem;
    border-radius: 14px;
  }

  .cmd-pill {
    white-space: normal;
  }

  .nav {
    height: 56px;
  }

  .nav-drawer {
    top: 56px;
  }

  .docs-layout {
    margin-top: 56px;
    min-height: calc(100vh - 56px);
  }

  .sidebar {
    top: 56px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo span {
    font-size: 1rem;
  }

  .nav-right .btn {
    height: 34px;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .card,
  .btn {
    transition: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  /* garder l’anim Discord visible même si OS “réduire les animations” */
  .nexar-discord-fab__ring,
  .nexar-discord-fab__ring--delay {
    animation: nexar-fab-ring 2s ease-out infinite !important;
  }

  .nexar-discord-fab__btn {
    animation: nexar-fab-bob 2.4s ease-in-out infinite !important;
  }
}
