/* Spoken English Adventure - interface styling
   Bright, chunky and touch-first: the players are 8-20 year olds, often on a
   phone. Everything below is sized for thumbs and readable at arm's length. */

:root {
  --ink: #16233d;
  --ink-soft: #52618044;
  --paper: #fffdf7;
  --brand: #3b82f6;
  --brand-dark: #2563eb;
  --purple: #8b5cf6;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 10px 30px rgba(15, 28, 55, .28);
  --shadow-sm: 0 4px 14px rgba(15, 28, 55, .2);
  --radius: 18px;
  --font: "Baloo 2", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0; height: 100%;
  overflow: hidden;
  background: #12203a;
  font-family: var(--font);
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

#app { position: fixed; inset: 0; }
#scene { position: absolute; inset: 0; width: 100%; height: 100%; display: block; touch-action: none; }
.hidden { display: none !important; }

/* ------------------------------------------------------------- bubbles */

#bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 5; }

.bubble {
  position: absolute;
  transform: translate(-50%, -100%) scale(.85);
  opacity: 0;
  transition: transform .22s cubic-bezier(.2,1.4,.5,1), opacity .18s ease;
  max-width: min(56vw, 400px);
  padding: 12px 16px 14px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 3px solid #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.bubble.is-in { opacity: 1; transform: translate(-50%, -100%) scale(1); }
.bubble::after {
  content: ""; position: absolute; bottom: -13px; left: 50%;
  transform: translateX(-50%);
  border: 13px solid transparent; border-top-color: var(--paper); border-bottom: 0;
}
.bubble-name {
  align-self: flex-start;
  font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: var(--purple);
  padding: 3px 10px; border-radius: 999px;
  margin-top: -22px; margin-bottom: 2px;
  box-shadow: var(--shadow-sm);
}
.bubble-student .bubble-name { background: var(--green); }
.bubble-text { font-size: clamp(15px, 2.4vw, 19px); font-weight: 600; line-height: 1.32; color: var(--ink); }

/* ----------------------------------------------------------------- HUD */

#hud { position: absolute; inset: 0; pointer-events: none; z-index: 10; }
#hud button { pointer-events: auto; }

.hud-player {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  background: rgba(18, 32, 58, .82);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(160deg, #7dd3fc, #3b82f6);
  display: grid; place-items: center; font-size: 24px;
  border: 3px solid #fff;
}
.player-meta { min-width: 140px; }
.player-line { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 15px; }
.level-pill { font-size: 11px; background: var(--amber); color: #3b2600; padding: 2px 8px; border-radius: 999px; }
.xp-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.22); margin: 5px 0 2px; overflow: hidden; }
.xp-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #4ade80, #22c55e); transition: width .5s ease; }
.xp-text { font-size: 10px; color: #cbd5e1; font-weight: 600; }

.hud-stats { position: absolute; top: 14px; right: 12px; display: flex; gap: 8px; }
.stat-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(18, 32, 58, .82); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-weight: 800; font-size: 15px; box-shadow: var(--shadow-sm);
}
.stat-pill .ico { font-size: 16px; }

.hud-rail { position: absolute; top: 76px; left: 12px; display: flex; flex-direction: column; gap: 8px; }
.rail-btn {
  width: 60px; height: 58px; border: 0; cursor: pointer;
  background: rgba(18, 32, 58, .82); color: #fff;
  border-radius: 16px; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; gap: 1px;
  transition: transform .12s ease, background .12s ease;
}
.rail-btn span { font-size: 22px; line-height: 1; }
.rail-btn small { font-size: 9.5px; font-weight: 700; letter-spacing: .03em; opacity: .85; }
.rail-btn:hover { background: var(--brand); transform: translateX(3px); }
.rail-btn:active { transform: scale(.94); }

#quest-card {
  position: absolute; top: 76px; right: 12px;
  max-width: 230px; padding: 12px 14px;
  background: rgba(18, 32, 58, .88); color: #fff;
  border-radius: 14px; box-shadow: var(--shadow);
  border-left: 4px solid var(--amber);
}
.quest-head { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
#quest-text { font-size: 13.5px; font-weight: 600; line-height: 1.35; }

/* ------------------------------------------------------------ controls */

#controls { position: absolute; inset: auto 0 0 0; z-index: 12; pointer-events: none; padding: 0 18px calc(20px + var(--safe-b)); }
#joystick {
  pointer-events: auto; position: absolute; left: 22px; bottom: calc(24px + var(--safe-b));
  width: 132px; height: 132px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.28), rgba(18,32,58,.42));
  border: 3px solid rgba(255,255,255,.5);
  touch-action: none; box-shadow: var(--shadow);
}
#knob {
  position: absolute; left: 50%; top: 50%;
  width: 56px; height: 56px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(160deg, #fff, #cbd5e1);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  pointer-events: none;
}
.action-cluster { position: absolute; right: 22px; bottom: calc(24px + var(--safe-b)); display: flex; gap: 12px; align-items: flex-end; }
.round-btn {
  pointer-events: auto; width: 84px; height: 84px; border-radius: 50%; border: 3px solid rgba(255,255,255,.6);
  background: rgba(18, 32, 58, .8); color: #fff; cursor: pointer;
  display: grid; place-items: center; gap: 2px; box-shadow: var(--shadow);
  transition: transform .1s ease, background .15s ease;
}
.round-btn .btn-icon { font-size: 28px; line-height: 1; }
.round-btn .btn-label { font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.round-btn.primary { background: linear-gradient(160deg, #34d399, #059669); animation: pulse 1.6s ease-in-out infinite; }
.round-btn:active, .round-btn.is-active { transform: scale(.92); background: var(--brand); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.55), var(--shadow); } 50% { box-shadow: 0 0 0 14px rgba(52,211,153,0), var(--shadow); } }

/* -------------------------------------------------------- conversation */

#convo {
  position: absolute; left: 50%; bottom: calc(18px + var(--safe-b));
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 28px));
  background: rgba(18, 32, 58, .93);
  border-radius: 22px; box-shadow: var(--shadow);
  padding: 16px 18px 18px; z-index: 20;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.14);
}
.convo-leave {
  position: absolute; top: 10px; right: 12px; width: 30px; height: 30px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 15px; font-weight: 800;
}
.convo-leave:hover { background: var(--red); }
.convo-step { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #93c5fd; }
.convo-prompt { color: #fff; font-size: clamp(15px, 2.6vw, 18px); font-weight: 700; margin: 4px 0 12px; line-height: 1.35; }

.answer-area { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mic-btn {
  position: relative; width: 84px; height: 84px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.85); cursor: pointer;
  background: linear-gradient(160deg, #34d399, #059669);
  box-shadow: 0 8px 22px rgba(5,150,105,.5);
  display: grid; place-items: center;
  transition: transform .12s ease, background .2s ease;
}
.mic-btn:active { transform: scale(.93); }
.mic-btn.is-listening { background: linear-gradient(160deg, #f87171, #dc2626); animation: listen 1.1s ease-in-out infinite; }
.mic-btn.is-disabled { background: #475569; box-shadow: none; cursor: not-allowed; }
.mic-btn:disabled { opacity: .65; cursor: not-allowed; }
@keyframes listen { 0%,100% { box-shadow: 0 0 0 0 rgba(248,113,113,.6); } 50% { box-shadow: 0 0 0 18px rgba(248,113,113,0); } }
.mic-glyph { font-size: 34px; }
.mic-wave { position: absolute; bottom: 9px; display: flex; gap: 3px; align-items: flex-end; height: 14px; opacity: 0; transition: opacity .2s; }
.mic-wave.is-on { opacity: 1; }
.mic-wave i { width: 3px; height: 5px; background: #fff; border-radius: 2px; animation: bar .8s ease-in-out infinite; }
.mic-wave i:nth-child(2) { animation-delay: .1s; } .mic-wave i:nth-child(3) { animation-delay: .2s; }
.mic-wave i:nth-child(4) { animation-delay: .3s; } .mic-wave i:nth-child(5) { animation-delay: .4s; }
@keyframes bar { 0%,100% { height: 4px; } 50% { height: 13px; } }
.mic-label { color: #e2e8f0; font-size: 13.5px; font-weight: 700; min-height: 19px; text-align: center; }

.type-row { display: flex; gap: 8px; width: 100%; }
#answer-input {
  flex: 1; min-width: 0; padding: 13px 16px; font-size: 16px; font-family: var(--font); font-weight: 600;
  border: 3px solid rgba(255,255,255,.2); border-radius: 14px;
  background: rgba(255,255,255,.96); color: var(--ink);
}
#answer-input:focus { outline: none; border-color: var(--brand); }
#answer-input:disabled { opacity: .55; }

.hint-btn {
  border: 0; background: rgba(245,158,11,.2); color: #fcd34d;
  padding: 7px 16px; border-radius: 999px; font-weight: 800; font-size: 12.5px;
  cursor: pointer; font-family: var(--font);
}
.hint-btn.is-active { background: var(--amber); color: #3b2600; }
.hint-text { color: #fcd34d; font-size: 14px; font-weight: 700; text-align: center; }

/* ------------------------------------------------------------ feedback */

#feedback {
  position: absolute; left: 50%; bottom: calc(18px + var(--safe-b)); transform: translateX(-50%);
  width: min(520px, calc(100vw - 28px)); z-index: 25;
}
.fb-card {
  background: var(--paper); border-radius: 22px; box-shadow: var(--shadow);
  padding: 16px 18px 18px; border: 4px solid var(--green);
  animation: pop .3s cubic-bezier(.2,1.5,.5,1);
}
@keyframes pop { from { transform: scale(.9) translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
.band-excellent { border-color: #22c55e; } .band-good { border-color: #84cc16; }
.band-ok { border-color: #f59e0b; } .band-tryagain { border-color: #f97316; } .band-poor { border-color: #ef4444; }

.fb-head { display: flex; align-items: center; gap: 10px; }
.fb-emoji { font-size: 30px; }
.fb-label { font-size: 21px; font-weight: 800; flex: 1; }
.fb-xp { background: var(--green); color: #fff; padding: 5px 13px; border-radius: 999px; font-weight: 800; font-size: 14px; }
.fb-meter { height: 12px; border-radius: 999px; background: #e2e8f0; margin: 12px 0 7px; overflow: hidden; }
.fb-meter-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #fbbf24, #22c55e); transition: width .7s cubic-bezier(.2,1,.4,1); }
.fb-percent { font-size: 14.5px; font-weight: 600; }
.fb-stars { font-size: 22px; letter-spacing: 2px; margin: 4px 0; }
.star { color: #d5dbe4; } .star.is-on { color: #fbbf24; }
.fb-said { font-size: 13.5px; color: #64748b; font-style: italic; margin: 4px 0; }
.fb-msg { font-size: 15px; font-weight: 600; line-height: 1.4; margin: 6px 0 2px; }
.fb-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; background: #e2e8f0; color: #475569; }
.chip-good { background: #dcfce7; color: #166534; } .chip-miss { background: #fee2e2; color: #991b1b; }
.fb-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }

/* --------------------------------------------------------------- buttons */

.btn {
  border: 0; cursor: pointer; font-family: var(--font); font-weight: 800;
  padding: 12px 24px; border-radius: 14px; font-size: 15px;
  transition: transform .1s ease, filter .15s ease;
}
.btn:active { transform: scale(.96); }
.btn-primary { background: linear-gradient(160deg, #3b82f6, #2563eb); color: #fff; box-shadow: 0 5px 0 #1d4ed8; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: #e2e8f0; color: #334155; box-shadow: 0 5px 0 #cbd5e1; }
.btn-danger { background: #fee2e2; color: #b91c1c; box-shadow: 0 5px 0 #fecaca; }
.btn-big { padding: 16px 40px; font-size: 18px; border-radius: 16px; }

/* --------------------------------------------------------------- screens */

#screen-root { position: absolute; inset: 0; z-index: 40; opacity: 0; transition: opacity .22s ease; }
#screen-root.is-in { opacity: 1; }
.screen-backdrop {
  position: absolute; inset: 0; background: rgba(10, 18, 34, .72);
  backdrop-filter: blur(5px);
  display: grid; place-items: center; padding: 16px; overflow-y: auto;
}
.screen-card {
  background: var(--paper); border-radius: 24px; box-shadow: var(--shadow);
  padding: 26px 26px 22px; width: min(600px, 100%); max-height: 92vh; overflow-y: auto;
  border: 4px solid #fff;
  animation: pop .28s cubic-bezier(.2,1.4,.5,1);
}
.screen-hero { text-align: center; }
.screen-title { margin: 0 0 6px; font-size: clamp(22px, 4.4vw, 30px); font-weight: 800; text-align: center; }
.screen-sub { margin: 0 0 14px; text-align: center; color: #64748b; font-weight: 600; font-size: 15px; }
.screen-note { font-size: 12.5px; color: #94a3b8; text-align: center; margin: 12px 0 0; font-weight: 600; }
.screen-actions { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.section-h { margin: 20px 0 8px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #94a3b8; }

.field { display: block; margin: 14px 0; }
.field span { display: block; font-size: 13px; font-weight: 800; color: #64748b; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 13px 16px; font-size: 16px; font-family: var(--font); font-weight: 600;
  border: 3px solid #e2e8f0; border-radius: 14px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); }
.row-toggle { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-weight: 700; }
.row-toggle input { width: 22px; height: 22px; accent-color: var(--brand); }

/* brief */
.brief-day { text-align: center; font-weight: 800; color: var(--brand); letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }
.brief-loc { text-align: center; font-weight: 700; color: #475569; margin-bottom: 10px; }
.pill { background: #ede9fe; color: #6d28d9; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; margin-left: 8px; font-weight: 800; }
.brief-intro { font-size: 15.5px; line-height: 1.5; font-weight: 600; text-align: center; color: #334155; }
.brief-vocab h4 { margin: 16px 0 8px; font-size: 13px; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.brief-best { text-align: center; margin-top: 12px; font-weight: 700; color: #059669; }

/* results */
.result-head { text-align: center; padding-bottom: 12px; border-bottom: 3px dashed #e2e8f0; }
.result-emoji { font-size: 44px; }
.result-topic { color: #64748b; font-weight: 700; font-size: 14px; }
.result-percent { font-size: 52px; font-weight: 800; line-height: 1.05; color: var(--brand); }
.result-band { font-size: 19px; font-weight: 800; color: #334155; }
.result-stars { font-size: 26px; letter-spacing: 3px; }
.result-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: 8px; margin: 16px 0; }
.result-kpi { background: #f1f5f9; border-radius: 14px; padding: 12px 6px; text-align: center; }
.result-kpi span { display: block; font-size: 20px; font-weight: 800; color: var(--ink); }
.result-kpi small { font-size: 11px; color: #94a3b8; font-weight: 700; }
.bonuses { background: #fefce8; border-radius: 14px; padding: 10px 14px; }
.bonus-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; color: #854d0e; padding: 3px 0; }
.levelup { margin-top: 10px; text-align: center; background: linear-gradient(90deg,#fbbf24,#f59e0b); color: #422006; font-weight: 800; padding: 10px; border-radius: 14px; }

.result-table { width: 100%; border-collapse: collapse; }
.result-table td { padding: 9px 4px; border-bottom: 1px solid #eef2f6; font-size: 14px; font-weight: 600; }
.r-prompt { color: #475569; }
.r-score { text-align: right; font-weight: 800; width: 64px; }
.r-score.good { color: #16a34a; } .r-score.ok { color: #d97706; } .r-score.low { color: #dc2626; }

.stats { display: flex; flex-direction: column; gap: 9px; }
.stat { display: grid; grid-template-columns: 1fr 108px 46px; align-items: center; gap: 10px; direction: rtl; }
.stat > * { direction: ltr; }
.stat-bar { height: 11px; background: #e2e8f0; border-radius: 999px; overflow: hidden; grid-column: 1; }
.stat-fill { height: 100%; background: linear-gradient(90deg, #60a5fa, #3b82f6); border-radius: 999px; }
.stat-label { grid-column: 2; font-size: 13.5px; font-weight: 700; color: #475569; }
.stat-val { grid-column: 3; font-size: 13.5px; font-weight: 800; text-align: right; color: var(--ink); }

/* progress history */
.hist { display: flex; flex-direction: column; gap: 7px; }
.hist-row { display: grid; grid-template-columns: 54px 1fr 90px 46px; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; }
.hist-row.is-locked { opacity: .42; }
.hist-day { color: #94a3b8; font-size: 12px; }
.hist-topic { color: #334155; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hist-bar { height: 9px; background: #e2e8f0; border-radius: 999px; overflow: hidden; }
.hist-fill { display: block; height: 100%; background: linear-gradient(90deg,#4ade80,#22c55e); border-radius: 999px; }
.hist-score { text-align: right; color: var(--ink); }
.trend { font-size: 18px; } .trend.up { color: #16a34a; } .trend.down { color: #dc2626; }

/* map */
.map-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-top: 6px; }
.map-tile {
  border: 3px solid #e2e8f0; background: #fff; border-radius: 18px; padding: 14px 10px;
  cursor: pointer; font-family: var(--font); text-align: center;
  display: flex; flex-direction: column; gap: 3px; align-items: center;
  transition: transform .12s ease, border-color .15s ease;
}
.map-tile:hover:not(:disabled) { transform: translateY(-3px); border-color: var(--brand); }
.map-tile:disabled { opacity: .4; cursor: not-allowed; }
.map-tile.is-here { border-color: var(--green); background: #f0fdf4; }
.map-icon { font-size: 32px; }
.map-label { font-weight: 800; font-size: 15px; }
.map-blurb { font-size: 11.5px; color: #94a3b8; font-weight: 600; }
.map-here { font-size: 10.5px; font-weight: 800; color: #16a34a; text-transform: uppercase; letter-spacing: .05em; }

.error-detail { background: #1e293b; color: #e2e8f0; padding: 14px; border-radius: 12px; font-size: 12px; white-space: pre-wrap; overflow-x: auto; }

/* ----------------------------------------------------------------- toast */

#toast { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 50; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast-item {
  background: rgba(18,32,58,.94); color: #fff; padding: 11px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease;
  max-width: 90vw; text-align: center;
}
.toast-item.is-in { opacity: 1; transform: none; }
.toast-warn { background: rgba(180, 83, 9, .96); }

/* ------------------------------------------------------------------ boot */

#boot { position: absolute; inset: 0; background: #12203a; display: grid; place-items: center; z-index: 60; transition: opacity .4s ease; }
#boot.hidden { opacity: 0; pointer-events: none; display: grid !important; }
.boot-inner { text-align: center; color: #cbd5e1; font-weight: 700; }
.boot-spin { width: 46px; height: 46px; margin: 0 auto 14px; border: 5px solid rgba(255,255,255,.18); border-top-color: var(--brand); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- narrow */

@media (max-width: 640px) {
  .hud-rail { top: auto; bottom: calc(178px + var(--safe-b)); flex-direction: row; }
  .rail-btn { width: 52px; height: 50px; }
  .rail-btn span { font-size: 19px; }
  #quest-card { max-width: 170px; font-size: 12px; }
  .player-meta { min-width: 104px; }
  #joystick { width: 112px; height: 112px; }
  .round-btn { width: 70px; height: 70px; }
  .bubble { max-width: 70vw; }
  .screen-card { padding: 20px 18px 18px; }
  .stat { grid-template-columns: 1fr 92px 42px; }
}

@media (max-height: 460px) {
  #convo { padding: 10px 14px 12px; }
  .mic-btn { width: 62px; height: 62px; }
  .mic-glyph { font-size: 25px; }
}

/* file:// guard message (see the inline script in index.html) */
.boot-error { max-width: 460px; padding: 0 24px; line-height: 1.5; }
.boot-error-icon { font-size: 46px; margin-bottom: 6px; }
.boot-error h1 { font-size: 22px; color: #fff; margin: 0 0 12px; }
.boot-error p { font-size: 14px; color: #94a3b8; font-weight: 600; margin: 0 0 12px; }
.boot-do { color: #e2e8f0 !important; margin-bottom: 8px !important; }
.boot-url {
  display: inline-block; background: var(--brand); color: #fff; text-decoration: none;
  padding: 13px 22px; border-radius: 14px; font-weight: 800; font-size: 15px;
  box-shadow: 0 5px 0 #1d4ed8; word-break: break-all;
}
.boot-url:hover { filter: brightness(1.1); }
.boot-alt { font-size: 12.5px !important; margin-top: 16px !important; }
.boot-alt code { background: rgba(255,255,255,.12); padding: 2px 7px; border-radius: 6px; color: #cbd5e1; }
