/* TrioToonz shared tokens — arcade broadcast */
:root {
  --ink: #07121f;
  --ink-2: #0c1c30;
  --panel: #11263d;
  --foam: #e8f4ff;
  --mist: #9bb6ce;
  --mint: #3dffc2;
  --mint-dim: #1aa884;
  --coral: #ff6b4a;
  --amber: #ffc857;
  --line: rgba(232, 244, 255, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--foam);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a.btn {
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.btn-mint {
  background: var(--mint);
  color: #042017;
}

.btn-mint:hover {
  background: #6fffd4;
}

.btn-ghost {
  background: transparent;
  color: var(--foam);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(61, 255, 194, 0.45);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
