/*
  FPLSpotz — Design Tokens
  Sourced directly from the approved mockup (Auction App Prototype).
  Do not introduce new palette/type choices without checking against the mockup.
*/

:root {
  /* Color */
  --color-bg: #1A1B1D;
  --color-panel: #1E2022;
  --color-accent: #D6FF3F;
  --color-accent-hover: #E9FF8A;
  --color-text: #F2F4F0;
  --color-text-muted: rgba(242, 244, 240, 0.6);
  --color-border: rgba(242, 244, 240, 0.07);
  --color-danger: #FF5C5C;
  --color-success: #4ADE80;

  /* Type */
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --fs-eyebrow: 11px;
  --fs-h1: 22px;
  --fs-h2: 17px;
  --fs-body: 14px;
  --fs-small: 13px;

  --ls-eyebrow: 0.22em;

  /* Layout */
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-input: 10px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --shadow-panel: 0 8px 22px rgba(0, 0, 0, 0.45);

  /* Bottom nav (fixed height reserved on all app-shell pages) */
  --bottom-nav-height: 64px;
}

/* Signature motifs carried over from the mockup */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(760px) rotate(540deg); opacity: 0; }
}

@keyframes popupPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
