/* ══════════════════════════════════════════════════
   maxN · 3-Player Game Tree Simulator
   static/css/style.css
   Premium Dark Mode + Glassmorphism
   ══════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────── */
:root {
  /* Core Backgrounds */
  --bg-app:     #0b0d17;
  --bg-panel:   rgba(20, 24, 39, 0.6);
  --bg-card:    rgba(30, 35, 55, 0.4);
  --bg-hover:   rgba(45, 50, 75, 0.5);
  
  /* Text Colors */
  --ink:        #ffffff;
  --ink2:       #d1d5db;
  --ink3:       #9ca3af;
  --ink4:       #6b7280;
  
  /* Lines and Rules */
  --rule:       rgba(255, 255, 255, 0.08);
  --rule2:      rgba(255, 255, 255, 0.15);

  /* Player Colors (Vibrant Neon) */
  --p1:         #ff4757;
  --p1-pale:    rgba(255, 71, 87, 0.15);
  --p2:         #1e90ff;
  --p2-pale:    rgba(30, 144, 255, 0.15);
  --p3:         #2ed573;
  --p3-pale:    rgba(46, 213, 115, 0.15);

  /* Strategy Colors */
  --coop:       #ffa502;
  --coop-pale:  rgba(255, 165, 2, 0.15);
  --spite:      #ff4757;
  --spite-pale: rgba(255, 71, 87, 0.15);
  --zero:       #a4b0be;
  --zero-pale:  rgba(164, 176, 190, 0.15);
  --pruned:     #57606f;
  --pruned-pale:rgba(87, 96, 111, 0.2);
  --opt-stroke: #1e90ff;

  /* Sizing */
  --ctrl-w:  320px;
  --hdr-h:   56px;
  --cmd-h:   50px;
  --ftr-h:   32px;
  --radius:  8px;
  
  /* Fonts */
  --serif:   'Inter', -apple-system, sans-serif;
  --mono:    'Fira Code', monospace;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }

body {
  font-family: var(--serif);
  font-size: 14px;
  background: var(--bg-app);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── HEADER ───────────────────────────────────── */
.hdr {
  height: var(--hdr-h);
  background: rgba(11, 13, 23, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10;
}

.hdr-left { display: flex; align-items: baseline; gap: 12px; }

.hdr-logo {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.hdr-tagline {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--ink3);
  font-weight: 400;
}

.hdr-pills { display: flex; gap: 6px; }

.pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.hp1 { background: var(--p1); color: #fff; box-shadow: 0 0 8px var(--p1-pale); }
.hp2 { background: var(--p2); color: #fff; box-shadow: 0 0 8px var(--p2-pale); }
.hp3 { background: var(--p3); color: #fff; box-shadow: 0 0 8px var(--p3-pale); }

.hdr-right { margin-left: auto; }

.hdr-status {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink2);
  background: var(--bg-card);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  letter-spacing: 0.05em;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* ── COMMAND STRIP ────────────────────────────── */
.cmd-strip {
  height: var(--cmd-h);
  background: rgba(15, 18, 28, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  z-index: 9;
}

.cmd-group { display: flex; align-items: center; gap: 6px; }

.cmd-sep {
  width: 1px;
  height: 24px;
  background: var(--rule2);
  margin: 0 8px;
  flex-shrink: 0;
}

.cmd-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink4);
  text-transform: uppercase;
  margin-right: 4px;
  font-weight: 600;
}

.solving-badge {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--p2);
  background: var(--p2-pale);
  border: 1px solid rgba(30, 144, 255, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 0 10px var(--p2-pale);
}
.solving-badge.show { display: flex; }

.solving-dot {
  width: 8px;
  height: 8px;
  background: var(--p2);
  border-radius: 50%;
  animation: pulse 0.8s infinite alternate;
  box-shadow: 0 0 6px var(--p2);
}
@keyframes pulse { from { opacity: 1; transform: scale(1); } to { opacity: 0.4; transform: scale(0.8); } }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--rule2);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.btn:hover  { 
  background: var(--bg-hover); 
  border-color: var(--ink3); 
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--ink3);
}
.btn-ghost:hover { 
  background: var(--bg-card); 
  border-color: var(--rule); 
  color: var(--ink); 
}

.btn-mm {
  background: var(--p2-pale);
  color: var(--p2);
  border-color: rgba(30, 144, 255, 0.4);
  font-weight: 600;
}
.btn-mm:hover { 
  background: var(--p2); 
  color: #fff; 
  border-color: var(--p2);
  box-shadow: 0 0 15px var(--p2-pale);
}

.btn-ab {
  background: var(--p1-pale);
  color: var(--p1);
  border-color: rgba(255, 71, 87, 0.4);
  font-weight: 600;
}
.btn-ab:hover { 
  background: var(--p1); 
  color: #fff; 
  border-color: var(--p1);
  box-shadow: 0 0 15px var(--p1-pale);
}

/* ── WORKSPACE ────────────────────────────────── */
.workspace {
  display: flex;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  position: relative;
}

/* ── CANVAS PANEL ─────────────────────────────── */
.canvas-panel {
  flex: 1;
  overflow: auto;
  position: relative;
  background-color: var(--bg-app);
  background-image: 
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 30px 30px, 150px 150px, 150px 150px;
  cursor: crosshair;
}

canvas { display: block; }

/* ── CONTROL PANEL ────────────────────────────── */
.ctrl-panel {
  width: var(--ctrl-w);
  flex-shrink: 0;
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  z-index: 5;
}

.ctrl-scroll {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rule2) transparent;
}
.ctrl-scroll::-webkit-scrollbar { width: 6px; }
.ctrl-scroll::-webkit-scrollbar-thumb { background: var(--rule2); border-radius: 3px; }

/* ── SECTIONS ─────────────────────────────────── */
.sec { padding: 20px; border-bottom: 1px solid var(--rule); }
.sec-last { border-bottom: none; }

.sec-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.sec-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--rule2), transparent); }

/* ── PLAYER CARDS ─────────────────────────────── */
.pcard {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pcard:last-child { margin-bottom: 0; }
.pcard:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.3); border-color: var(--rule2); }

.pcard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,0.02);
}

.pcard-stripe { width: 4px; height: 20px; border-radius: 2px; flex-shrink: 0; }
/* Dynamically styled by JS, but give it a default */
#stripe0 { background: var(--p1); box-shadow: 0 0 6px var(--p1); }
#stripe1 { background: var(--p2); box-shadow: 0 0 6px var(--p2); }
#stripe2 { background: var(--p3); box-shadow: 0 0 6px var(--p3); }

.pcard-name { font-family: var(--serif); font-weight: 600; font-size: 14px; flex: 1; color: var(--ink); }

.mode-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  color: var(--ink3);
  transition: all 0.3s ease;
}

.pcard-body { padding: 12px; }

.pcard-select {
  width: 100%;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--rule2);
  color: var(--ink);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  outline: none;
  appearance: none;
  transition: border-color 0.2s;
}
.pcard-select:focus { border-color: var(--p2); box-shadow: 0 0 0 2px var(--p2-pale); }
.pcard-select option { background: var(--bg-app); color: var(--ink); }

.pcard-extras { display: none; flex-direction: column; gap: 8px; margin-top: 10px; }

.extra-line {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.extra-line label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink3);
  width: 55px;
  flex-shrink: 0;
}
.extra-line select,
.extra-line input[type=number] {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--rule2);
  color: var(--ink);
  border-radius: 4px;
  padding: 4px 8px;
  width: 80px;
  outline: none;
  transition: all 0.2s;
}
.extra-line select:focus,
.extra-line input[type=number]:focus { border-color: var(--p2); box-shadow: 0 0 0 2px var(--p2-pale); }
.extra-line select option { background: var(--bg-app); }

/* ── PRESETS ──────────────────────────────────── */
.preset-list { display: flex; flex-direction: column; gap: 6px; }

.preset-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  color: var(--ink2);
  padding: 10px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.preset-item:hover { 
  background: var(--bg-hover); 
  border-color: var(--rule2); 
  transform: translateX(4px);
  color: var(--ink);
}

.preset-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink4);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  padding: 2px 0;
  border-radius: 4px;
}

/* ── INFO CARDS (node + result) ───────────────── */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--rule2);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 14px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.info-card .empty {
  font-style: italic;
  color: var(--ink4);
}

.nc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.nc-row:last-child { margin-bottom: 0; }
.nc-key { font-family: var(--mono); font-size: 11px; color: var(--ink3); letter-spacing: 0.05em; }
.nc-val { font-weight: 500; color: var(--ink); font-family: var(--mono); }
.nc-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.nc-div { border: none; border-top: 1px solid var(--rule); margin: 10px 0; }

/* ── LEAF EDITOR ──────────────────────────────── */
.leaf-ed {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.le-row { display: flex; align-items: center; gap: 10px; }
.le-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.le-p1 { background: var(--p1-pale); color: var(--p1); text-shadow: 0 0 5px var(--p1-pale); }
.le-p2 { background: var(--p2-pale); color: var(--p2); text-shadow: 0 0 5px var(--p2-pale); }
.le-p3 { background: var(--p3-pale); color: var(--p3); text-shadow: 0 0 5px var(--p3-pale); }

.le-label { font-family: var(--mono); font-size: 11px; color: var(--ink3); flex: 1; }
.le-input {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--rule2);
  color: var(--ink);
  border-radius: 6px;
  padding: 6px 10px;
  width: 80px;
  outline: none;
  text-align: right;
  transition: all 0.2s;
}
.le-input:focus { border-color: var(--p2); box-shadow: 0 0 0 2px var(--p2-pale); }

/* ── RESULT CONTENT ───────────────────────────── */
.rc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.rc-algo {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.rc-time { font-family: var(--mono); font-size: 10px; color: var(--ink4); }

.score-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sbar-label { font-family: var(--mono); font-size: 10px; width: 22px; flex-shrink: 0; font-weight: 600; }
.sbar-track { flex: 1; height: 6px; background: rgba(0,0,0,0.3); border-radius: 3px; overflow: hidden; box-shadow: inset 0 1px 2px rgba(0,0,0,0.5); }
.sbar-fill  { height: 100%; border-radius: 3px; transition: width 0.6s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 0 8px currentColor; }
.sbar-val   { font-family: var(--mono); font-size: 12px; font-weight: 600; width: 28px; text-align: right; flex-shrink: 0; }

.rc-strat { margin-top: 12px; font-family: var(--mono); font-size: 10px; color: var(--ink3); line-height: 1.6; }

.rc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--rule); }
.rc-stat  { background: rgba(0,0,0,0.2); border: 1px solid var(--rule2); border-radius: 6px; padding: 8px 6px; text-align: center; }
.rc-stat-n { display: block; font-family: var(--mono); font-size: 16px; font-weight: 600; color: var(--ink); text-shadow: 0 0 8px rgba(255,255,255,0.2); }
.rc-stat-l { display: block; font-family: var(--mono); font-size: 9px; color: var(--ink4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ── LEGEND ───────────────────────────────────── */
.legend { display: flex; flex-direction: column; gap: 8px; }
.leg-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink2); font-weight: 400; }

/* ── HOW-TO ───────────────────────────────────── */
.how-list { padding-left: 0; list-style: none; counter-reset: how; margin-bottom: 16px; }
.how-list li {
  counter-increment: how;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--ink2);
  margin-bottom: 8px;
  line-height: 1.6;
}
.how-list li::before {
  content: counter(how, decimal) '.';
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--p2);
  flex-shrink: 0;
  width: 16px;
  text-align: right;
}

/* Keyboard shortcuts */
.shortcut-table { display: flex; flex-direction: column; gap: 6px; }
.sc-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink3); }

kbd {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--rule2);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--ink);
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ── FOOTER ───────────────────────────────────── */
.ftr {
  height: var(--ftr-h);
  background: rgba(11, 13, 23, 0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
  z-index: 10;
}
.ftr span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; color: var(--ink4); }
#ftr-count { color: var(--p2); font-weight: 600; }

/* ── MODAL ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 12, 0.8);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: rgba(20, 24, 39, 0.95);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: scale(0.98);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalPop { to { transform: scale(1); } }

.modal-hdr {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}
.modal-title { font-family: var(--serif); font-size: 18px; font-weight: 700; flex: 1; color: var(--ink); letter-spacing: -0.01em; }
.modal-close {
  font-family: var(--mono);
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--rule2);
  color: var(--ink2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--p1); border-color: var(--p1); color: #fff; box-shadow: 0 0 10px var(--p1-pale); }

.modal-body {
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--rule2); border-radius: 3px; }

.theory-block {
  border-left: 4px solid var(--rule2);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  background: rgba(0,0,0,0.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.theory-block h3 { font-family: var(--serif); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.theory-block p  { font-size: 14px; line-height: 1.6; color: var(--ink2); margin-bottom: 8px; }
.theory-block p:last-child { margin-bottom: 0; }
.theory-block code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.theory-eg {
  font-style: italic;
  color: var(--ink3) !important;
  font-size: 13px !important;
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  margin-top: 10px;
}
.theory-ref { font-family: var(--serif); font-size: 12px; color: var(--ink4); font-style: italic; text-align: right; padding-top: 10px; border-top: 1px solid var(--rule); margin-top: 20px;}

/* ── ERROR TOAST ──────────────────────────────── */
.toast {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(11, 13, 23, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--p1);
  z-index: 300;
  display: none;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show { display: block; opacity: 1; transform: translateX(-50%) translateY(0); }
