/* Never Sober design tokens — source of truth: DESIGN.md */
@font-face{
  font-family:"Oswald";
  src:url("/assets/oswald.woff2") format("woff2");
  font-weight:400 700;font-style:normal;font-display:swap;
}
:root{
  /* color */
  --pink:#E91E8E;   /* primary — Party Pink */
  --cyan:#1FB7E2;   /* secondary — Electric Cyan (never on white) */
  --lime:#D5E600;   /* tertiary — Acid Lime (accents only) */
  --sunset:#E63D1F; /* accent / error */
  --ink:#0A0A0A;    /* surface — Ink Black */
  --ink2:#141414; --ink3:#1c1c1c;
  --white:#ffffff; --muted:#B4B4B4; --line:#2A2A2A;

  /* type */
  --disp:"Oswald","Bebas Neue","Arial Narrow",sans-serif;
  --body:"Helvetica Neue",Inter,system-ui,-apple-system,sans-serif;
  --mono:ui-monospace,"SF Mono",Menlo,monospace;

  /* day/afterparty theme layer (pages flip these) */
  --sky1:#7fc4e8; --sky2:#ffd59e;
  --fg:#0a0a0a; --fg2:#4a4a4a; --panel:#ffffff;
  --accent:var(--pink); --glow:rgba(233,30,142,0);
  --appbar:rgba(255,255,255,.72);
  --tile-ov:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.55));
}
.night, body.night{
  --sky1:#05060c; --sky2:#1a0820;
  --fg:#ffffff; --fg2:#b8b8b8; --panel:#101014;
  --accent:var(--cyan); --glow:rgba(31,183,226,.55);
  --appbar:rgba(8,8,12,.75);
  --tile-ov:linear-gradient(180deg,rgba(0,0,0,.14),rgba(0,0,0,.8));
}

/* ---------- seasonal skins ----------
   seasons.js adds body.season-<key>. Every palette is a rotation /
   reweighting of the five brand tokens — no new colors, only their
   rgba/gradient forms. Day rules first, night refinements after. */

/* Spring Break — cyan leads the day, lime closes the night */
body.season-spring-break{--accent:var(--cyan);--glow:rgba(31,183,226,.4)}
body.night.season-spring-break{--accent:var(--lime);--glow:rgba(213,230,0,.5);--sky2:rgba(31,183,226,.14)}

/* July 4th — cyan + white by day, pink fireworks at night */
body.season-july4{--accent:var(--cyan);--glow:rgba(31,183,226,.4)}
body.night.season-july4{--accent:var(--pink);--glow:rgba(233,30,142,.55);--sky2:rgba(31,183,226,.12)}

/* Halloween — sunset leads, everything else steps back */
body.season-halloween{--accent:var(--sunset);--glow:rgba(230,61,31,.45)}
body.night.season-halloween{--accent:var(--sunset);--glow:rgba(230,61,31,.6);--sky2:rgba(230,61,31,.16);
  --tile-ov:linear-gradient(180deg,rgba(0,0,0,.14),rgba(230,61,31,.12) 60%,rgba(0,0,0,.82))}

/* Thanksgiving — sunset on low heat */
body.season-thanksgiving{--accent:var(--sunset);--glow:rgba(230,61,31,.3)}
body.night.season-thanksgiving{--accent:var(--sunset);--glow:rgba(230,61,31,.4);--sky2:rgba(230,61,31,.1)}

/* Christmas — lime leads, pink backs it */
body.season-christmas{--accent:var(--lime);--glow:rgba(213,230,0,.4)}
body.night.season-christmas{--accent:var(--lime);--glow:rgba(213,230,0,.5);--sky2:rgba(233,30,142,.12)}

/* New Years — full pink/cyan party energy */
body.season-newyears{--accent:var(--pink);--glow:rgba(233,30,142,.4)}
body.night.season-newyears{--accent:var(--pink);--glow:rgba(233,30,142,.6);--sky2:rgba(31,183,226,.14)}
