:root {
  --bg: #17112b;
  --bg2: #2a1c46;
  --panel: rgba(255, 240, 220, 0.06);
  --panel-2: rgba(255, 240, 220, 0.11);
  --line: rgba(255, 240, 220, 0.14);
  --text: #f7ecd9;
  --dim: rgba(247, 236, 217, 0.66);
  --paper: #fbf1dc;
  --paper-2: #f1e0bd;
  --ink: #2a2238;
  --red: #d9443a;
  --red-deep: #8c2a22;
  --gold: #f2b441;
  --gold-deep: #9a6a14;
  --green: #72d49a;
  --blue: #8cc4ff;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 16px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100dvh;
  background:
    radial-gradient(90% 55% at 10% -10%, rgba(217, 68, 58, 0.28), transparent 60%),
    radial-gradient(80% 50% at 100% 0%, rgba(242, 180, 65, 0.15), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg) 70%);
  background-attachment: fixed;
}

button { font: inherit; color: inherit; }

/* ---------------- buttons ---------------- */
.btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--panel-2);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover:not(:disabled) { background: rgba(255, 240, 220, 0.18); }
.btn:active:not(:disabled) { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn.primary { background: var(--gold); color: #3a2400; border-color: transparent; box-shadow: 0 6px 22px rgba(242, 180, 65, 0.25); }
.btn.primary:hover:not(:disabled) { background: #ffc85e; }
.btn.ghost { background: transparent; }
.btn.small { padding: 7px 14px; font-size: 0.9rem; }
.btn.end.pulse { animation: glow 1.4s ease-in-out infinite; border-color: var(--gold); }
@keyframes glow { 50% { box-shadow: 0 0 0 4px rgba(242, 180, 65, 0.3); } }
.btn:focus-visible, .icon-btn:focus-visible, .node:focus-visible, .charm-chip:focus-visible, .intent:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.icon-btn {
  appearance: none;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 1.15rem;
  cursor: pointer;
}
.icon-btn.muted { opacity: 0.45; text-decoration: line-through; }
.corner { position: absolute; top: max(14px, env(safe-area-inset-top)); right: 16px; }

/* ---------------- title ---------------- */
.title-screen {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 32px 16px;
}
.title-lantern svg { width: 132px; height: auto; transform-origin: 50% 0; animation: sway 4s ease-in-out infinite; filter: drop-shadow(0 0 34px rgba(242, 180, 65, 0.45)); }
@keyframes sway { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
h1 { font-family: var(--serif); font-size: clamp(2.8rem, 12vw, 4.4rem); line-height: 1; margin: 8px 0 0; }
h1 em { color: var(--gold); }
.tagline { color: var(--dim); margin: 4px 0 18px; max-width: 30ch; line-height: 1.4; }
.menu { display: flex; flex-direction: column; gap: 10px; width: min(300px, 100%); }
.title-stats { color: var(--dim); min-height: 1.2em; font-size: 0.9rem; }

/* ---------------- run chrome ---------------- */
.run-screen {
  max-width: 780px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: max(10px, env(safe-area-inset-top)) 16px max(12px, env(safe-area-inset-bottom));
}
.topbar { display: flex; align-items: center; gap: 10px; }
.hp { display: flex; align-items: center; gap: 7px; flex: 1 1 120px; min-width: 0; }
.hp-icon { color: #ff7a6a; }
.hp-bar { flex: 1; height: 10px; min-width: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 99px; overflow: hidden; }
#hp-fill { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, #d9443a, #f07b5a); transition: width 0.4s ease; }
#hp-text { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 0.9rem; white-space: nowrap; }
.gold { display: flex; align-items: center; gap: 6px; font-weight: 800; font-variant-numeric: tabular-nums; }
.coin { width: 15px; height: 15px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #ffe08a, var(--gold) 60%, var(--gold-deep)); box-shadow: 0 0 0 1.5px var(--gold-deep) inset; }
.where { color: var(--dim); font-size: 0.85rem; white-space: nowrap; }
.deck-btn { width: auto; padding: 0 12px; border-radius: 99px; display: inline-flex; align-items: center; gap: 7px; font-size: 0.95rem; font-weight: 700; }
.deck-icon { width: 12px; height: 16px; border-radius: 3px; background: linear-gradient(135deg, var(--red), var(--red-deep)); box-shadow: 2px 2px 0 var(--paper-2); }
.charms { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.charm-chip { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel); font-size: 1.15rem; cursor: pointer; padding: 0; }
.view { flex: 1; display: flex; flex-direction: column; padding-top: 10px; }

@media (max-width: 480px) {
  .where { display: none; }
  .topbar { gap: 8px; }
}

/* ---------------- shared headings ---------------- */
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; color: var(--gold); margin: 0; font-weight: 800; }
.act-head, .panel-head { text-align: center; margin-top: 8px; }
.act-head h2, .panel-head h2 { font-family: var(--serif); font-size: clamp(1.6rem, 6vw, 2.2rem); margin: 4px 0 0; }
.panel-head p { color: var(--dim); margin: 6px 0 0; }
.section-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dim); margin: 22px 0 10px; text-align: center; }
.footer-actions { display: flex; justify-content: center; gap: 10px; margin: 24px 0 8px; flex-wrap: wrap; }

/* ---------------- map ---------------- */
.track { list-style: none; display: flex; justify-content: center; align-items: center; gap: 6px; padding: 0; margin: 18px 0 6px; flex-wrap: wrap; }
.step { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 0.85rem; font-weight: 800; background: var(--panel); border: 1px solid var(--line); color: var(--dim); }
.step.done { background: rgba(114, 212, 154, 0.16); border-color: rgba(114, 212, 154, 0.5); color: var(--green); }
.step.current { background: var(--gold); color: #3a2400; border-color: transparent; box-shadow: 0 0 0 4px rgba(242, 180, 65, 0.25); }
.prompt { text-align: center; color: var(--dim); margin: 12px 0; }
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.node:hover:not(:disabled) { transform: translateY(-3px); background: var(--panel-2); border-color: rgba(242, 180, 65, 0.5); }
.node:disabled { opacity: 0.45; cursor: not-allowed; }
.node-icon { font-size: 2.4rem; line-height: 1.1; }
.node-title { font-weight: 800; font-size: 1.08rem; }
.node-text { color: var(--dim); font-size: 0.9rem; line-height: 1.35; }
.node-art svg { width: 130px; height: 130px; }
.node-elite { border-color: rgba(217, 68, 58, 0.55); }
.node-boss { border-color: rgba(242, 180, 65, 0.6); background: linear-gradient(180deg, rgba(242, 180, 65, 0.14), var(--panel)); grid-column: 1 / -1; }

/* ---------------- combat ---------------- */
.view-combat { gap: 10px; }
.enemy { display: flex; flex-direction: column; align-items: center; }
.intents { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; min-height: 52px; }
.intent {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 7px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(20, 12, 34, 0.72);
  border: 1px solid var(--line);
  cursor: help;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}
.intent-icon { grid-row: span 2; font-size: 1.25rem; }
.intent-main { font-weight: 900; font-size: 1.15rem; line-height: 1.05; font-variant-numeric: tabular-nums; }
.intent-sub { font-size: 0.72rem; color: var(--dim); white-space: nowrap; }
.intent-atk { border-color: rgba(217, 68, 58, 0.6); }
.intent-atk .intent-main { color: #ff8f7f; }
.intent-block .intent-main { color: var(--blue); }
.intent-buff .intent-main { color: var(--gold); }
.intent-hex .intent-main { color: #c9b8ec; }
.intent-heal .intent-main { color: var(--green); }
.intent.will-counter { box-shadow: 0 0 0 2px var(--green), 0 0 18px rgba(114, 212, 154, 0.5); transform: translateY(-2px); }
.intent.cancelled { opacity: 0.5; }
.intent.cancelled .intent-main { text-decoration: line-through; }
.intent.burst { animation: burst 0.5s ease-out; }
@keyframes burst { 40% { transform: scale(1.25); } }

.enemy-art { width: min(50vw, clamp(140px, 26vh, 240px)); aspect-ratio: 1; margin-top: 2px; }
.enemy.boss .enemy-art { width: min(58vw, clamp(160px, 30vh, 270px)); }
.enemy-art svg { width: 100%; height: 100%; overflow: visible; animation: bob 3s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-6px); } }
.enemy-art.hit svg { animation: hit 0.35s ease-out; }
@keyframes hit { 0% { filter: brightness(2.2); } 25% { transform: translateX(-10px); } 50% { transform: translateX(8px); } 75% { transform: translateX(-4px); } }
.enemy-art.lunge svg { animation: lunge 0.4s ease-in-out; }
@keyframes lunge { 50% { transform: translateY(22px) scale(1.08); } }
.enemy-art.defeated svg { animation: vanish 0.9s forwards; }
@keyframes vanish { to { opacity: 0; transform: translateY(-20px) scale(0.8); filter: blur(4px); } }
.enemy-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.tag { font-family: var(--sans); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.12em; padding: 3px 8px; border-radius: 99px; background: var(--red); color: #fff; }
.enemy.boss .tag { background: var(--gold); color: #3a2400; }

.bar-row { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 6px; }
.bar { position: relative; flex: 0 1 260px; height: 20px; border-radius: 99px; background: rgba(0, 0, 0, 0.38); border: 1px solid var(--line); overflow: hidden; }
.bar-fill { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, #c9372e, #ef6a4c); transition: width 0.5s ease; }
.bar-text { position: relative; display: block; text-align: center; font-size: 0.78rem; font-weight: 800; line-height: 18px; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7); font-variant-numeric: tabular-nums; }
.badge { font-size: 0.78rem; font-weight: 800; padding: 2px 8px; border-radius: 99px; white-space: nowrap; }
.badge.block { background: rgba(140, 196, 255, 0.16); color: var(--blue); border: 1px solid rgba(140, 196, 255, 0.5); }
.badge.strength { background: rgba(242, 180, 65, 0.16); color: var(--gold); border: 1px solid rgba(242, 180, 65, 0.5); }

.player {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255, 240, 220, 0.04), rgba(255, 240, 220, 0.08));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px 12px 12px;
}
.player.hurt { animation: hurt 0.4s; }
@keyframes hurt { 20% { transform: translateX(-8px); box-shadow: 0 0 0 2px var(--red) inset; } 60% { transform: translateX(6px); } }
.status { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 99px; background: rgba(0, 0, 0, 0.26); font-size: 0.84rem; font-weight: 700; border: 1px solid transparent; }
.pill.dim { color: var(--dim); font-weight: 500; }
button.pill { cursor: pointer; border-color: var(--line); }
.block-pill { color: var(--blue); }
.block-pill.zero { color: var(--dim); }
.pips { display: inline-flex; gap: 3px; }
.pips i { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.pips i.off { background: rgba(255, 255, 255, 0.16); }
.preview { min-height: 28px; display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: center; justify-content: center; text-align: center; font-size: 0.95rem; }
.preview .hint { color: var(--dim); }
.preview .invalid { color: #ff9a8a; }
.fx { font-weight: 800; white-space: nowrap; }
.fx.dmg { color: #ff8f7f; }
.fx.blk { color: var(--blue); }
.fx.heal { color: var(--green); }
.fx.gold { color: var(--gold); }
.fx.note { font-size: 0.76rem; padding: 2px 8px; border-radius: 99px; background: rgba(255, 255, 255, 0.1); }
.fx.counter { background: var(--green); color: #0d2a18; }

.hand { display: flex; justify-content: center; padding-top: 20px; min-height: calc(var(--cw, 70px) * 1.4 + 22px); }
.hand .card + .card { margin-left: calc(var(--ov, -6px) * -1); }
.actions { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 8px; }
.actions .btn { padding: 12px 8px; }

/* ---------------- cards ---------------- */
.card {
  position: relative;
  flex: none;
  width: var(--cw, 70px);
  height: calc(var(--cw, 70px) * 1.4);
  padding: 0;
  border-radius: calc(var(--cw, 70px) * 0.12);
  background: linear-gradient(160deg, #fffaf0, var(--paper) 55%, var(--paper-2));
  color: var(--ink);
  border: 1px solid rgba(60, 40, 20, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-family: var(--serif);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.25s ease;
}
.card.red { color: var(--red); }
.card .corner { position: absolute; top: 4%; left: 8%; display: flex; flex-direction: column; align-items: center; line-height: 0.95; }
.card .corner b { font-size: calc(var(--cw, 70px) * 0.26); font-weight: 700; }
.card .corner i { font-style: normal; font-size: calc(var(--cw, 70px) * 0.22); }
.card .corner.br { top: auto; left: auto; bottom: 4%; right: 8%; transform: rotate(180deg); }
.card .pip { position: absolute; inset: 0; display: grid; place-items: center; font-size: calc(var(--cw, 70px) * 0.5); }
.card.two { background: linear-gradient(160deg, #fff6d8, #f7e3a8 60%, #eccb78); border-color: rgba(154, 106, 20, 0.7); }
.card.junk {
  background: repeating-linear-gradient(45deg, #5a5470 0 6px, #4d4763 6px 12px);
  color: #ddd5f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}
.junk-icon { font-size: calc(var(--cw, 70px) * 0.4); line-height: 1; }
.junk-text { font-size: calc(var(--cw, 70px) * 0.17); font-weight: 800; }
@media (hover: hover) { button.card:hover { transform: translateY(-5px); } }
.card.selected, .card.selected:hover { transform: translateY(-18px); box-shadow: 0 0 0 3px var(--gold), 0 12px 22px rgba(0, 0, 0, 0.45); z-index: 2; }
.card.fly { transform: translateY(-140px) scale(0.8) !important; opacity: 0; transition: transform 0.25s ease-in, opacity 0.25s ease-in; }
.card:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; z-index: 3; }
div.card { cursor: default; }

/* ---------------- reward / shop tiles ---------------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; }
.tile { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); }
.tile.owned { border-color: rgba(114, 212, 154, 0.55); background: rgba(114, 212, 154, 0.08); }
.tile-icon { font-size: 1.9rem; width: 44px; text-align: center; flex: none; }
.tile.stack { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 14px; }
.tile.stack .tile-icon { width: auto; font-size: 2.3rem; line-height: 1.1; }
.tile.stack .tile-info { align-items: center; }
.tile.stack .btn { margin-top: auto; min-width: 96px; }
.tile-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.tile-info span { color: var(--dim); font-size: 0.87rem; line-height: 1.35; }
.card-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; --cw: 74px; }
.offer { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.gains { color: var(--gold); font-weight: 800; font-size: 1.1rem; }

/* ---------------- events / end ---------------- */
.event-card, .end-card { width: min(520px, 100%); margin: 16px auto; text-align: center; padding: 24px 20px; border-radius: 22px; background: var(--panel); border: 1px solid var(--line); }
.event-icon { font-size: 3.4rem; line-height: 1.1; }
.event-card h2, .end-card h2 { font-family: var(--serif); margin: 8px 0; font-size: 1.8rem; }
.event-card p, .end-card p { color: var(--dim); line-height: 1.55; }
.event-card .event-result { color: var(--text); background: rgba(242, 180, 65, 0.12); border-radius: 12px; padding: 12px; }
.event-options { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.end-lantern svg { width: 100px; height: auto; }
.end-card.lost .end-lantern svg { filter: grayscale(0.85) brightness(0.7); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(76px, 1fr)); gap: 8px; margin: 18px 0 0; }
.stats div { padding: 10px 4px !important; }
.stats div { background: rgba(0, 0, 0, 0.2); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.stats dt { color: var(--dim); font-size: 0.76rem; }
.stats dd { margin: 2px 0 0; font-size: 1.4rem; font-weight: 800; }

/* ---------------- modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 16px; background: rgba(8, 4, 16, 0.72); backdrop-filter: blur(3px); }
.modal-card {
  width: min(580px, 100%);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #30224f, #21173a);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: pop 0.22s ease-out;
}
@keyframes pop { from { transform: scale(0.94); opacity: 0; } }
.modal-card h2 { font-family: var(--serif); margin: 0 0 10px; text-align: center; }
.modal-body { overflow-y: auto; }
.modal-actions { display: flex; justify-content: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.deck-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)); gap: 10px 8px; --cw: 50px; justify-items: center; padding: 10px 2px 4px; }
.deck-grid .card.selected { transform: translateY(-5px); }
.deck-summary { text-align: center; color: var(--dim); margin: 0 0 4px; }
.menu-list { display: flex; flex-direction: column; gap: 10px; }
.how h3 { font-size: 0.82rem; color: var(--gold); margin: 16px 0 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.how h3:first-child { margin-top: 0; }
.how p, .how li { color: var(--dim); line-height: 1.5; margin: 4px 0; }
.how ul { padding-left: 20px; margin: 4px 0; }
.how strong { color: var(--text); }
.how table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.how td { padding: 6px; border-bottom: 1px solid var(--line); color: var(--dim); }
.how td:last-child { text-align: right; color: var(--text); font-weight: 700; white-space: nowrap; }

/* ---------------- toast + floating numbers ---------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 30;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 10px 16px;
  border-radius: 12px;
  background: #3b2b5e;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  text-align: center;
  line-height: 1.4;
}
.toast.show { animation: toastIn 0.22s ease-out; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 10px); } }
#fx { position: fixed; inset: 0; pointer-events: none; z-index: 25; overflow: hidden; }
.float {
  position: absolute;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 1.6rem;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55), 0 0 12px rgba(0, 0, 0, 0.45);
  animation: floatUp 1.1s ease-out forwards;
}
.float.dmg { color: #ffb4a4; }
.float.hurt { color: #ff6a5a; font-size: 1.9rem; }
.float.counter { color: var(--green); font-size: 1.35rem; letter-spacing: 0.06em; }
.float.blk { color: var(--blue); font-size: 1.2rem; }
.float.heal { color: var(--green); font-size: 1.2rem; }
.float.gold { color: var(--gold); font-size: 1.1rem; }
.float.info { color: #e6dcf8; font-size: 1.1rem; }
@keyframes floatUp {
  0% { opacity: 0; transform: translate(-50%, -30%) scale(0.7); }
  15% { opacity: 1; transform: translate(-50%, -60%) scale(1.1); }
  100% { opacity: 0; transform: translate(-50%, -170%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
