/* /assets/css/profile-theme-default.css
   ─────────────────────────────────────────────────────────────────
   DEFAULT THEME — "Nightclub" (deep blue-black + lime)
   Values lifted verbatim from guest/events/index.php so the profile
   page matches the events listing look:
       background #080b14 · accent #c8ff00 · Anton + Figtree
   Ink on the lime accent is #111 (as used in the events file).

   This file defines ONLY CSS variables. All layout/component rules
   live in profile-public.css and reference these vars. To re-skin a
   profile, load a different profile-theme-*.css instead of this one
   — no markup or layout changes needed.
   ─────────────────────────────────────────────────────────────────
   Swappable theme contract — every theme MUST define all of these:
     --clt-bg --clt-surface --clt-surface2
     --clt-border --clt-border2
     --clt-text --clt-muted
     --clt-accent --clt-accent-rgb --clt-accent-ink --clt-accent-glow
     --clt-radius --clt-radius-sm
     --clt-font-head --clt-font-body
   ───────────────────────────────────────────────────────────────── */

:root {
  /* ── Surfaces (events file: --bg / --card / --card2) ── */
  --clt-bg:          #080b14;
  --clt-surface:     #0d111c;            /* solid sibling of rgba(255,255,255,.04) over #080b14 */
  --clt-surface2:    #141a28;            /* solid sibling of rgba(255,255,255,.07) over #080b14 */

  /* ── Borders (events file: --border + a brighter step) ── */
  --clt-border:      rgba(233,241,255,.10);
  --clt-border2:     rgba(233,241,255,.20);

  /* ── Text (events file: --white / --grey) ── */
  --clt-text:        #e9f1ff;
  --clt-muted:       rgba(233,241,255,.50);

  /* ── Accent (events file: --lime, ink #111) ── */
  --clt-accent:      #c8ff00;
  --clt-accent-rgb:  200, 255, 0;
  --clt-accent-ink:  #111111;
  --clt-accent-glow: rgba(200,255,0,.20);

  /* ── Geometry (events cards use 16px / pills) ── */
  --clt-radius:      16px;
  --clt-radius-sm:   12px;

  /* ── Type (events file: Anton display, Figtree body) ── */
  --clt-font-head:   'Anton', Impact, sans-serif;
  --clt-font-body:   'Figtree', system-ui, sans-serif;

  /* ── Page ambient glow (subtle lime, matches brand) ── */
  --clt-glow-1:      rgba(200,255,0,.05);
  --clt-glow-2:      rgba(200,255,0,.03);
}