/* Abyssal Pact — dark dungeon scroll shell */

:root {
  --void: #07060a;
  --ink: #0c0a10;
  --panel: #100e14;
  --moss: #3d4a3a;
  --rust: #6e3b2e;
  --bronze: #9a7b52;
  --bronze-soft: rgba(154, 123, 82, 0.88);
  --bronze-line: rgba(154, 123, 82, 0.5);
  --bronze-dim: rgba(154, 123, 82, 0.18);
  --gold: #d2b277;
  --gold-bright: #f0dfb4;
  --blood: #8f2f2f;
  --fog: rgba(120, 140, 130, 0.06);
  --text: rgba(232, 224, 210, 0.94);
  --text-soft: rgba(210, 200, 184, 0.88);
  --muted: rgba(130, 120, 108, 0.92);
  --hp: #c45c5c;
  --mana: #6b8cbe;
  --stam: #c4a050;
  --tile-a: #6e3030;
  --tile-b: #4a3a5c;
  --tile-c: #5c4a32;
  --danger: #c45c5c;
  --ok: #7a9e7a;
  --story-size: clamp(0.95rem, 2.4vw, 1.05rem);
  --ui-size: 0.78rem;
  --font-display: "Cormorant Garamond", "Noto Serif TC", serif;
  --font-serif: "Noto Serif TC", "Cormorant Garamond", serif;
  --font-ui: "Noto Sans TC", "IBM Plex Sans", sans-serif;
  --shell-max: 920px;
  --line: var(--bronze-dim);
  --line-strong: var(--bronze-line);
  --amber: var(--gold);
  --amber-soft: var(--bronze-soft);
  --amber-muted: var(--muted);
  --amber-dim: var(--bronze-dim);
}

* { box-sizing: border-box; }

html, body {
  margin: 0 !important;
  height: 100% !important;
  max-height: 100dvh !important;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-ui);
  overflow: hidden !important;
}

body {
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(154, 123, 82, 0.07), transparent 55%),
    radial-gradient(700px 500px at 80% 110%, rgba(70, 30, 30, 0.18), transparent 50%),
    linear-gradient(180deg, #0a090e 0%, #07060a 55%, #050408 100%);
}

#app {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
  background: transparent;
}

#app.mode-scroll {
  display: block !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
}

.screen { display: none; }
.screen.active { display: block; animation: fade .28s ease; }

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes caret-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.95; }
}

.eyebrow {
  color: var(--muted);
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1, h2, .serif { font-family: var(--font-display); font-weight: 600; }

.btn {
  appearance: none;
  border: 1px solid var(--bronze-line);
  background: transparent;
  color: var(--text-soft);
  padding: 9px 14px;
  border-radius: 6px;
  font: inherit;
  font-size: var(--ui-size);
  letter-spacing: 0.06em;
  cursor: pointer;
}

.btn:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn.primary {
  border-color: var(--bronze);
  color: var(--gold-bright);
  background: rgba(139, 115, 85, 0.12);
}

.btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ——— Title ——— */
.sc-title {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  background: #000;
}

.sc-title h1 {
  font-size: clamp(2.2rem, 8vw, 3rem);
  letter-spacing: 0.18em;
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-weight: 500;
}

.sc-title .lede {
  max-width: 28em;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.sc-seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--bronze-line);
  margin-bottom: 14px;
  object-fit: cover;
}

.sc-title .actions { margin-top: 26px; }

/* ——— Karma-like shell ——— */
.sc-shell.screen.active {
  display: flex !important;
}

.sc-shell {
  height: 100dvh;
  height: 100svh;
  width: min(100%, var(--shell-max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #07060a;
  box-shadow:
    0 0 0 1px rgba(154, 123, 82, 0.18),
    0 0 48px rgba(0, 0, 0, 0.65);
}

.sc-scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sc-scene-bg img,
.sc-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transform: scale(1.02);
  filter: saturate(0.85) contrast(1.05) brightness(0.72);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  will-change: background-image;
}

.sc-scene-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.35) 0%, rgba(7, 6, 10, 0.55) 28%, rgba(7, 6, 10, 0.78) 58%, rgba(7, 6, 10, 0.94) 100%),
    radial-gradient(120% 70% at 50% 20%, transparent 20%, rgba(0, 0, 0, 0.45) 100%);
}

.sc-shell > .sc-top,
.sc-shell > .sc-scroll-wrap,
.sc-shell > .sc-mid,
.sc-shell > .sc-bottom,
.sc-shell > .sc-shell-decor {
  position: relative;
  z-index: 2;
}

.sc-shell-decor {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.sc-corner {
  position: absolute;
  width: 56px;
  height: auto;
  opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
}

.sc-corner-tl {
  top: 4px;
  left: 4px;
}

.sc-corner-tr {
  top: 4px;
  right: 4px;
  transform: scaleX(-1);
}

.sc-ornament {
  position: absolute;
  left: 50%;
  bottom: 188px;
  transform: translateX(-50%);
  width: min(72%, 220px);
  opacity: 0.22;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Top brand bar */
.sc-top {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--bronze-dim);
  background: linear-gradient(180deg, rgba(20, 16, 22, 0.72), rgba(10, 8, 14, 0.55));
  position: relative;
  z-index: 4;
  backdrop-filter: blur(6px);
}

.sc-seal-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 34px;
  height: 34px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(154, 123, 82, 0.4);
}

.sc-seal-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.05);
}

.sc-top-left,
.sc-top-right {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.sc-top-right { justify-content: flex-end; }

.sc-top-brand {
  text-align: center;
  line-height: 1.05;
}

.sc-top-brand .zh {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  color: var(--gold-bright);
  font-weight: 600;
  text-shadow: 0 0 18px rgba(154, 123, 82, 0.25);
}

.sc-top-brand .en {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  color: var(--bronze-soft);
  margin-top: 3px;
}

.sc-ghost {
  appearance: none;
  border: 1px solid var(--bronze-line);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.sc-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.sc-ghost.is-on {
  background: rgba(139, 115, 85, 0.14);
  border-color: var(--bronze);
}

.sc-icon-btn {
  appearance: none;
  width: 30px;
  height: 28px;
  border: 1px solid var(--bronze-line);
  background: transparent;
  color: var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
}

.sc-pill {
  border: 1px solid var(--bronze-line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  background: rgba(139, 115, 85, 0.08);
  white-space: nowrap;
}

/* Story */
.sc-scroll-wrap {
  flex: 1 1 0%;
  min-height: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(7, 6, 10, 0.22);
  backdrop-filter: blur(1.5px);
}

.sc-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 14px 16px 12px;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(154, 123, 82, 0.04), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 30%);
}

.sc-scroll-pad { display: none !important; }

.sc-place {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 10px;
}

.sc-beat {
  font-family: var(--font-serif);
  font-size: var(--story-size);
  line-height: 1.78;
  color: var(--text);
  margin: 0 0 0.9em;
  white-space: pre-wrap;
  font-weight: 500;
}

.sc-beat.muted {
  color: var(--muted);
  font-style: normal;
  font-size: calc(var(--story-size) * 0.92);
}

.sc-beat.system {
  font-size: 0.84rem;
  color: var(--ok);
  border-left: 2px solid rgba(122, 158, 122, 0.45);
  padding-left: 10px;
}

.sc-beat.danger {
  color: var(--hp);
  border-left: 2px solid rgba(196, 92, 92, 0.45);
  padding-left: 10px;
}

.sc-speech {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 0.85em;
  padding: 10px 12px;
  border: 1px solid rgba(154, 123, 82, 0.28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(40, 28, 24, 0.55), rgba(12, 10, 16, 0.7));
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.35);
  max-width: min(92%, 520px);
}

.sc-speech.is-left {
  margin-right: auto;
  border-bottom-left-radius: 4px;
}

.sc-speech.is-right {
  margin-left: auto;
  grid-template-columns: 1fr 52px;
  background: linear-gradient(225deg, rgba(36, 42, 48, 0.72), rgba(14, 16, 22, 0.78));
  border-color: rgba(107, 140, 190, 0.35);
  border-bottom-right-radius: 4px;
}

.sc-speech.is-right .sc-speech-icon {
  order: 2;
  border-color: rgba(107, 140, 190, 0.45);
}

.sc-speech.is-right .sc-speech-body {
  order: 1;
  text-align: right;
}

.sc-speech.is-right .sc-speech-name {
  color: #b7c7de;
}

.sc-speech-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(154, 123, 82, 0.45);
  object-fit: cover;
  background: #111;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.sc-speech-body {
  min-width: 0;
}

.sc-speech-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-bottom: 5px;
}

.sc-speech-text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--story-size);
  line-height: 1.68;
  color: var(--text);
  white-space: pre-wrap;
}

.sc-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--gold);
  vertical-align: -0.1em;
  animation: caret-pulse 0.95s steps(1) infinite;
}

.sc-float-meta {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  pointer-events: none;
}

.sc-scroll-down {
  position: absolute;
  right: 10px;
  bottom: 6px;
  appearance: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--bronze-line);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--gold);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  z-index: 2;
}

/* Mid status strip */
.sc-mid {
  flex: 0 0 auto;
  border-top: 1px solid rgba(154, 123, 82, 0.28);
  border-bottom: 1px solid rgba(154, 123, 82, 0.28);
  padding: 9px 14px 11px;
  background: linear-gradient(180deg, rgba(18, 14, 18, 0.78), rgba(10, 8, 12, 0.86));
  position: relative;
  z-index: 4;
  backdrop-filter: blur(6px);
}

.sc-mid-line {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin-bottom: 8px;
  line-height: 1.45;
}

.sc-mid-hint {
  color: var(--gold);
  margin-top: -4px;
}

.sc-mid-line em {
  font-style: normal;
  color: var(--muted);
}

.sc-mid-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
}

.sc-stats {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 4px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  min-width: 0;
}

.sc-stat {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  white-space: nowrap;
  min-width: 0;
}

.sc-stat .k { color: var(--muted); }
.sc-stat .v { color: var(--text); font-variant-numeric: tabular-nums; }
.sc-stat .v.hp { color: var(--hp); }
.sc-stat .v.mana { color: var(--mana); }
.sc-stat .v.stam { color: var(--stam); }

.sc-mid-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

/* Bottom panel — 3 columns */
.sc-bottom {
  flex: 0 0 auto;
  background: linear-gradient(180deg, rgba(12, 10, 14, 0.86), rgba(6, 5, 8, 0.94));
  padding: 0 10px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 0;
  position: relative;
  z-index: 4;
  backdrop-filter: blur(8px);
}

.sc-panel-tabs {
  display: flex;
  gap: 16px;
  padding: 8px 4px 6px;
}

.sc-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  padding: 2px 0;
  cursor: pointer;
}

.sc-tab.is-on {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--bronze);
}

.sc-panel-grid {
  display: grid;
  grid-template-columns: 64px 1fr 76px;
  gap: 10px;
  align-items: stretch;
  min-height: 168px;
}

.sc-side-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-side-btn {
  appearance: none;
  border: 1px solid rgba(154, 123, 82, 0.4);
  background: linear-gradient(180deg, rgba(28, 22, 20, 0.9), rgba(12, 10, 14, 0.95));
  color: var(--gold);
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 8px 2px;
  border-radius: 7px;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(240, 223, 180, 0.06);
}

.sc-side-btn:hover,
.sc-side-btn.is-on {
  background: rgba(154, 123, 82, 0.14);
  border-color: var(--bronze);
  color: var(--gold-bright);
}

.sc-side-danger {
  border-color: rgba(143, 47, 47, 0.55);
  color: #d8a0a0;
}

.sc-main-acts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.sc-tile {
  appearance: none;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(154, 123, 82, 0.35);
  background: linear-gradient(180deg, rgba(36, 28, 24, 0.75), rgba(14, 12, 16, 0.9));
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  text-align: center;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1.2;
  box-shadow:
    inset 0 1px 0 rgba(240, 223, 180, 0.07),
    0 6px 14px rgba(0, 0, 0, 0.28);
}

.sc-tile:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sc-tile:hover:not(:disabled) {
  filter: brightness(1.08);
}

.sc-tile-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.sc-tile-main {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.16em;
  color: var(--text);
  font-weight: 600;
}

.sc-tile.tone-a {
  border-color: rgba(143, 47, 47, 0.7);
  background: linear-gradient(180deg, rgba(72, 28, 28, 0.55), rgba(24, 12, 14, 0.85));
}
.sc-tile.tone-a .sc-tile-main { color: #efc0c0; }

.sc-tile.tone-b {
  border-color: rgba(90, 70, 120, 0.7);
  background: linear-gradient(180deg, rgba(48, 36, 72, 0.5), rgba(16, 12, 24, 0.88));
}
.sc-tile.tone-b .sc-tile-main { color: #d8c8ef; }

.sc-tile.tone-c {
  border-color: rgba(154, 123, 82, 0.75);
  background: linear-gradient(180deg, rgba(64, 48, 28, 0.5), rgba(18, 14, 12, 0.9));
}
.sc-tile.tone-c .sc-tile-main { color: var(--gold-bright); }

.sc-side-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-slot {
  appearance: none;
  flex: 1;
  min-height: 72px;
  border: 1px solid rgba(154, 123, 82, 0.4);
  background: linear-gradient(180deg, rgba(24, 18, 16, 0.85), rgba(10, 8, 12, 0.95));
  border-radius: 8px;
  color: var(--muted);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.35);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  text-align: center;
}

.sc-slot strong {
  font-weight: 500;
  color: var(--gold);
  font-size: 0.82rem;
}

.sc-slot.is-on {
  border-color: var(--bronze);
  background: rgba(139, 115, 85, 0.12);
  color: var(--gold-bright);
}

.sc-slot:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sc-hint { display: none; }
.sc-tools { display: none; }
.sc-nav { display: none !important; }

/* Legacy verb helpers (reward overflow etc.) */
.sc-verb-row,
.sc-verb-col,
.sc-choices {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-verb-row { flex-direction: row; flex-wrap: wrap; }

.sc-verb,
.sc-choice {
  appearance: none;
  border: 1px solid var(--bronze-line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.84rem;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.sc-choice {
  display: flex;
  gap: 8px;
  text-align: left;
  width: 100%;
}

.sc-choice-tag { color: var(--gold); font-size: 10px; min-width: 1.5em; }
.sc-choice-body { flex: 1; }

/* Overlays */
.sc-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: fade .18s ease;
}

.sc-modal {
  width: min(var(--shell-max), 100%);
  max-height: min(72dvh, 560px);
  overflow: auto;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0));
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--bronze-line);
  border-bottom: 0;
  background: #0a0a0a;
}

.sc-modal h3 {
  margin: 0 0 4px;
  color: var(--gold-bright);
  letter-spacing: 0.16em;
  font-size: 1.1rem;
  font-weight: 500;
}

.sc-modal .sc-modal-sub {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.sc-modal h4 {
  margin: 14px 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.sc-modal-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.sc-bag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sc-bag-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--bronze-dim);
  border-radius: 6px;
}

.sc-bag-item strong { color: var(--gold-bright); font-size: 0.92rem; }
.sc-bag-item span { color: var(--muted); font-size: 0.8rem; }

.sc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.sc-table td {
  padding: 5px 4px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  vertical-align: top;
}

.sc-table td:first-child {
  color: var(--gold);
  width: 3.2em;
}

.sc-modal ul {
  margin: 0 0 12px;
  padding-left: 1.1em;
  line-height: 1.5;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.sc-modal .btn { margin-right: 6px; margin-top: 4px; }
.center { text-align: center; }

#app.mode-battle {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 10px 10px;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#app.mode-battle .screen.active {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 380px) {
  .sc-panel-grid { grid-template-columns: 46px 1fr 56px; gap: 6px; }
  .sc-tile-main { font-size: 0.95rem; letter-spacing: 0.1em; }
  .sc-stats { grid-template-columns: 1fr 1fr; }
}
