/* ==========================================================================
   Morcegão FM — Effects: radii, borders, shadows, motion
   Low radii (posters + stickers feel crisp, not soft). Deep shadows on
   the dark stage. Amp-glow rings for focus/live. Snappy, slightly springy
   motion — nothing floaty.
   ========================================================================== */
:root {
  /* Radii — kept tight; the brand is poster/sticker, not pill-soft */
  --radius-xs:  2px;
  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --radius-xl:  16px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px; /* @kind spacing */
  --border-heavy: 2px; /* @kind spacing */

  /* Shadows — deep, warm-black, for lifting cards off the stage */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.55);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.6);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.7);

  /* Glow rings — the amp/neon accent language */
  --glow-red:   0 0 0 3px rgba(228,38,29,0.35);
  --glow-amber: 0 0 18px rgba(242,160,7,0.45);
  --glow-blue:  0 0 0 3px rgba(42,157,244,0.35);
  --glow-live:  0 0 0 0 rgba(52,199,89,0.6);

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(242,160,7,0.55);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:    120ms; /* @kind other */
  --dur-base:    200ms; /* @kind other */
  --dur-slow:    360ms; /* @kind other */

  /* Texture overlay opacity (grain on dark stage) */
  --grain-opacity: 0.05; /* @kind other */
}
