/* =============================================
   GLAKE — Gake Candle | Pump.fun AI Agent
   Black & White · Brutal · Interactive
   ============================================= */

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

:root {
  --black: #000000;
  --black2: #0a0a0a;
  --black3: #111111;
  --black4: #1a1a1a;
  --black5: #222222;
  --white: #ffffff;
  --white2: rgba(255,255,255,0.85);
  --white3: rgba(255,255,255,0.55);
  --white4: rgba(255,255,255,0.25);
  --white5: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --border2: rgba(255,255,255,0.06);
  --accent: #ffffff;
  --font: 'Space Grotesk', -apple-system, sans-serif;
  --mono: 'Space Mono', 'Courier New', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* SCANLINES */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* NOISE */
.noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: 9998;
  animation: noiseMove 0.5s steps(1) infinite;
}

@keyframes noiseMove {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, -1%); }
  50%  { transform: translate(1%, 0); }
  75%  { transform: translate(0, 1%); }
  100% { transform: translate(-1%, 1%); }
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.logo-text {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--white3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--white); }

.nav-x {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px !important;
  color: var(--white2) !important;
  transition: all var(--transition) !important;
}

.nav-x:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}

.nav-mobile-menu {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--white3);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: var(--white3);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border2);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--white); }

.mobile-menu.open { display: flex; }

@media (max-width: 700px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile-menu { display: block; }
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Grid lines bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial fade from center */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, var(--black) 100%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-mascot {
  position: relative;
  margin-bottom: 28px;
  display: inline-block;
}

.mascot-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  object-fit: cover;
  animation: mascotFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.2s;
}

.mascot-img:hover { transform: scale(1.08) rotate(-3deg); }

.mascot-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* GLITCH */
.hero-title {
  font-family: var(--mono);
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.glitch {
  position: relative;
  display: inline-block;
  color: var(--white);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
}

.glitch::before {
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  transform: translate(-3px, 0);
  animation: glitchTop 5s infinite 1s;
}

.glitch::after {
  color: #fff;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  transform: translate(3px, 0);
  animation: glitchBottom 5s infinite 1.5s;
}

@keyframes glitchTop {
  0%, 92%, 100% { opacity: 0; }
  93% { opacity: 0.8; transform: translate(-4px, -2px); }
  95% { opacity: 0.6; transform: translate(4px, 0); }
  97% { opacity: 0.8; transform: translate(-2px, 1px); }
  98% { opacity: 0; }
}

@keyframes glitchBottom {
  0%, 94%, 100% { opacity: 0; }
  95% { opacity: 0.7; transform: translate(3px, 2px); }
  97% { opacity: 0.5; transform: translate(-3px, 0); }
  99% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 20px);
  color: var(--white3);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-desc {
  max-width: 520px;
  font-size: 15px;
  color: var(--white2);
  line-height: 1.7;
  background: var(--white5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
}

.hero-desc strong { color: var(--white); }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 30px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--white2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.15);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: var(--white5);
}

.live-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 20px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white3);
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.ticker-time {
  color: var(--white);
  font-weight: 700;
}

/* =============================================
   STATS BAR
   ============================================= */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px;
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.stat-val {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--white3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 700px) {
  .stats-bar { gap: 20px; padding: 24px 16px; }
  .stat { padding: 0 16px; }
  .stat-divider { display: none; }
  .stat-val { font-size: 22px; }
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border2);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-sub {
  font-size: 15px;
  color: var(--white3);
  margin-bottom: 40px;
}

/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 160px;
  background: var(--white5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: all var(--transition);
}

.step:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white4);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 13px;
  color: var(--white3);
  line-height: 1.6;
  margin-bottom: 14px;
}

.step-detail {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white4);
  letter-spacing: 1px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white4);
  font-size: 24px;
  padding: 0 8px;
  align-self: center;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 40px; }
}

/* =============================================
   LIVE ROUND
   ============================================= */

.live-section { background: var(--black2); }

.round-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.round-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.round-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 1s ease-in-out infinite;
  flex-shrink: 0;
}

.round-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white3);
}

/* COUNTDOWN RING */
.countdown-wrap {
  display: flex;
  justify-content: center;
  padding: 36px 24px 28px;
}

.countdown-ring {
  position: relative;
  width: 160px;
  height: 160px;
}

.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 6;
}

.ring-fill {
  fill: none;
  stroke: var(--white);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.countdown-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-time {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

.countdown-label {
  font-size: 11px;
  color: var(--white3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* MINI BOARD */
.mini-board {
  padding: 0 24px 24px;
}

.mini-board-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: var(--mono);
}

.mini-board-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--white5);
  border: 1px solid var(--border2);
  font-size: 13px;
}

.rank-1 {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.mini-rank {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  color: var(--white3);
  flex-shrink: 0;
  min-width: 24px;
}

.mini-ca {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white2);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-votes {
  font-size: 12px;
  color: var(--white3);
  flex-shrink: 0;
  white-space: nowrap;
}

.mini-badge {
  background: var(--white);
  color: var(--black);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.mini-note {
  font-size: 11px;
  color: var(--white4);
  margin-top: 10px;
  font-style: italic;
}

.mini-board-empty,
.buys-empty,
.lb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 20px;
  color: var(--white4);
  font-size: 13px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.empty-icon {
  font-size: 28px;
  opacity: 0.5;
}

/* PHASE BAR */
.phase-bar {
  display: flex;
  border-top: 1px solid var(--border);
}

.phase {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white4);
  letter-spacing: 0.5px;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
}

.phase:last-child { border-right: none; }

.phase.active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* =============================================
   LEADERBOARD
   ============================================= */

.leaderboard-table {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lb-header {
  display: grid;
  grid-template-columns: 60px 1fr 80px 80px 80px;
  gap: 0;
  padding: 12px 20px;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lb-row {
  display: grid;
  grid-template-columns: 60px 1fr 80px 80px 80px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border2);
  font-size: 14px;
  transition: background var(--transition);
  align-items: center;
}

.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: var(--white5); }

.lb-gold   { background: rgba(255,255,255,0.05); }
.lb-silver { background: rgba(255,255,255,0.03); }
.lb-bronze { background: rgba(255,255,255,0.02); }

.lb-rank { font-size: 20px; }

.lb-wallet {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white2);
}

.lb-wins {
  font-weight: 700;
  color: var(--white);
}

.lb-pct {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white3);
}

@media (max-width: 600px) {
  .lb-header,
  .lb-row {
    grid-template-columns: 48px 1fr 60px 60px;
    font-size: 12px;
  }
  .lb-header span:nth-child(4),
  .lb-row span:nth-child(4) { display: none; }
}

/* =============================================
   RECENT BUYS
   ============================================= */

.buys-section { background: var(--black2); }

.buys-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.buy-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}

.buy-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.buy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.buy-round {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white3);
  font-weight: 700;
  letter-spacing: 1px;
}

.buy-time {
  font-size: 12px;
  color: var(--white4);
}

.buy-ca {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white4);
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buy-ca span { color: var(--white2); }

.buy-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.buy-amount {
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}

.buy-votes {
  font-size: 13px;
  color: var(--white3);
}

.buy-tx {
  margin-left: auto;
  color: var(--white3);
  text-decoration: none;
  font-size: 12px;
  font-family: var(--mono);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  transition: all var(--transition);
}

.buy-tx:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(255,255,255,0.2); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white2);
  user-select: none;
}

.faq-chevron {
  font-size: 20px;
  font-weight: 300;
  color: var(--white3);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--white3);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-item.open { border-color: rgba(255,255,255,0.15); }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 40px 32px 24px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left p {
  font-size: 13px;
  color: var(--white4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--white3);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
}

.footer-bottom p {
  font-size: 11px;
  color: var(--white4);
  line-height: 1.6;
}

/* =============================================
   TOAST
   ============================================= */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--white);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  z-index: 9000;
  transition: transform 0.3s ease;
  white-space: nowrap;
  font-family: var(--mono);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}
