/* =====================================================
   PIB Platform CSS  v2  (2026-05-25)
   Loads on top of base.css. Never replaces it.
   Structure:
     1. @import (Google Fonts) — must be first
     2. Brand tokens (:root)
     3. Keyframe animations
     4. Background system (.pib-bg and friends)
     5. pib-brand component library
     6. Platform overrides — adapts base.css class names
     7. Hub Grid System (DO NOT TOUCH)
   ===================================================== */

/* 1. Google Fonts — @import must precede all other rules */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700;900&family=Barlow:wght@400;500;600;700&display=swap');

/* ============================================================
   2. BRAND TOKENS
   Source of truth: brand-system.md v2
   RULE: No paid fonts. Google Fonts only (Barlow = free).
   ============================================================ */
:root {
  /* Accent colors */
  --yellow:        #FAFF15;              /* INTERACTIVE ONLY — never decorative */
  --yellow-deep:   #d4d800;              /* Yellow pressed/hover */
  --teal:          #00D4C8;              /* Accent — glow, chip borders, combo labels */
  --magenta:       #FF2D78;              /* Accent — active tab glow, highlights */

  /* Background scale */
  --black:         #000000;              /* True black — outer shell */
  --ink:           #0a0a0a;              /* Darkest bg base */
  --char:          #333333;              /* Borders, dividers */
  --char-deep:     #1a1a1a;              /* Card bg (non-glass), form surfaces */
  --surface-1:     #0f0f0f;
  --surface-2:     #141414;
  --surface-3:     #1c1c1c;
  --surface-4:     #242424;

  /* Text */
  --white:         #ffffff;
  --white-dim:     rgba(255,255,255,0.72);
  --white-faint:   rgba(255,255,255,0.38);

  /* Structural */
  --border:        rgba(255,255,255,0.08);

  /* Glow shadows */
  --yellow-glow:   0 0 6px rgba(250,255,21,0.9), 0 0 16px rgba(250,255,21,0.65), 0 0 32px rgba(250,255,21,0.3);
  --teal-glow:     0 0 8px rgba(0,212,200,0.45), 0 0 20px rgba(0,212,200,0.25);
  --aurora-glow:   0 0 8px rgba(0,212,200,0.5), 0 0 20px rgba(255,45,120,0.35), 0 0 40px rgba(0,212,200,0.2);
  --magenta-glow:  0 0 6px #FF2D78, 0 0 14px rgba(255,45,120,0.7), 0 0 28px rgba(255,45,120,0.4);

  /* Gradients */
  --grad-ytm:  linear-gradient(135deg, #FAFF15 0%, #00D4C8 50%, #FF2D78 100%);
  --grad-tm:   linear-gradient(135deg, #00D4C8 0%, #FF2D78 100%);

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  /* Shape:
     --rad = 12px for CONTENT CONTAINERS (cards, panels, sheets, dialogs).
     Buttons, inputs, badges = 0px SHARP — do NOT use --rad on those. */
  --rad: 12px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ============================================================
   3. KEYFRAME ANIMATIONS
   ============================================================ */

/* Aurora layer drift */
@keyframes aurora-drift-1 {
  0%   { opacity: 0.8; }
  100% { opacity: 1.0; }
}
@keyframes aurora-drift-2 {
  0%   { opacity: 1.0; }
  100% { opacity: 0.8; }
}
@keyframes aurora-drift-3 {
  0%   { opacity: 0.85; }
  100% { opacity: 1.0; }
}

/* Star twinkle */
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* String light bulb flicker — single keyframe, 9 class variants for stagger */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  45%       { opacity: 0.75; }
  50%       { opacity: 0.9; }
  70%       { opacity: 0.7; }
}
.b0 { animation: flicker 2.1s infinite 0.00s; }
.b1 { animation: flicker 1.8s infinite 0.22s; }
.b2 { animation: flicker 2.4s infinite 0.55s; }
.b3 { animation: flicker 1.9s infinite 0.88s; }
.b4 { animation: flicker 2.2s infinite 0.15s; }
.b5 { animation: flicker 2.0s infinite 0.44s; }
.b6 { animation: flicker 1.7s infinite 0.77s; }
.b7 { animation: flicker 2.3s infinite 0.33s; }
.b8 { animation: flicker 2.1s infinite 0.66s; }

/* Ambient party glow breathing */
@keyframes glow-pulse {
  0%   { opacity: 0.08; }
  50%  { opacity: 0.18; }
  100% { opacity: 0.08; }
}

/* PIB wordmark 9s idle animation */
@keyframes logo-idle {
  0%   { transform: rotateY(0deg);   filter: none; }
  48%  { transform: rotateY(0deg);   filter: none; }
  50%  { transform: rotateY(90deg);  filter: hue-rotate(90deg) brightness(1.3); }
  52%  { transform: rotateY(180deg); filter: none; }
  98%  { transform: rotateY(180deg); filter: none; }
  100% { transform: rotateY(0deg);   filter: none; }
}

/* Glitch hover — attach to .glitch-hover */
@keyframes glitch-hover {
  0%   { transform: skewX(0deg);                    clip-path: none; }
  10%  { transform: skewX(-4deg);                   clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); }
  20%  { transform: skewX(3deg);                    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
  30%  { transform: skewX(-2deg) translateX(3px);   clip-path: none; }
  40%  { transform: skewX(2deg) translateX(-3px); }
  50%  { transform: skewX(-1deg);                   clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%); }
  60%  { transform: skewX(0deg) translateX(2px);    clip-path: none; }
  70%  { transform: skewX(-3deg); }
  80%  { transform: skewX(1deg); }
  90%  { transform: skewX(0deg) translateX(-1px); }
  100% { transform: skewX(0deg);                    clip-path: none; }
}

/* ============================================================
   4. BACKGROUND SYSTEM
   The "backyard nighttime house party under the aurora" scene.
   .pib-bg is position:fixed, inset:0, z-index:0.
   All page content sits at z-index:1 or higher.
   ============================================================ */

.pib-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020510;
  pointer-events: none;
}

/* Scanline texture overlay */
.pib-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 10;
}

/* Aurora layers */
.pib-aurora-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pib-aurora-1 {
  background:
    radial-gradient(ellipse 130% 90% at 15% 25%, rgba(0,212,200,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 110% 80% at 50% 45%, rgba(250,255,21,0.10) 0%, transparent 60%);
  animation: aurora-drift-1 8s infinite alternate ease-in-out;
}
.pib-aurora-2 {
  background:
    radial-gradient(ellipse 90% 70% at 85% 15%, rgba(255,45,120,0.22) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 5% 80%, rgba(255,45,120,0.15) 0%, transparent 45%);
  animation: aurora-drift-2 10s infinite alternate ease-in-out;
}
.pib-aurora-3 {
  background:
    radial-gradient(ellipse 80% 70% at 95% 65%, rgba(0,212,200,0.20) 0%, transparent 50%);
  animation: aurora-drift-3 12s infinite alternate ease-in-out;
}
.pib-aurora-4 {
  background:
    radial-gradient(ellipse 60% 50% at 40% 10%, rgba(0,212,200,0.12) 0%, transparent 50%);
  animation: aurora-drift-1 9s infinite alternate ease-in-out;
  animation-delay: 2s;
}
.pib-aurora-5 {
  background:
    radial-gradient(ellipse 100% 60% at 70% 30%, rgba(255,45,120,0.10) 0%, transparent 55%);
  animation: aurora-drift-2 11s infinite alternate ease-in-out;
  animation-delay: 1s;
}

/* Star layers — positioned in sky zone (top 58%) */
.pib-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58%;
  pointer-events: none;
}

/* Tiny stars — 1px dots via box-shadow (54 stars) */
.pib-stars-tiny {
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow:
    18px 22px 0 rgba(255,255,255,0.6),
    45px 88px 0 rgba(255,255,255,0.6),
    72px 14px 0 rgba(255,255,255,0.6),
    103px 67px 0 rgba(255,255,255,0.6),
    138px 39px 0 rgba(255,255,255,0.6),
    165px 112px 0 rgba(255,255,255,0.6),
    199px 28px 0 rgba(255,255,255,0.6),
    221px 91px 0 rgba(255,255,255,0.6),
    249px 55px 0 rgba(255,255,255,0.6),
    278px 133px 0 rgba(255,255,255,0.6),
    305px 17px 0 rgba(255,255,255,0.6),
    331px 78px 0 rgba(255,255,255,0.6),
    358px 42px 0 rgba(255,255,255,0.6),
    30px 155px 0 rgba(255,255,255,0.6),
    62px 178px 0 rgba(255,255,255,0.6),
    94px 198px 0 rgba(255,255,255,0.6),
    122px 162px 0 rgba(255,255,255,0.6),
    155px 189px 0 rgba(255,255,255,0.6),
    183px 145px 0 rgba(255,255,255,0.6),
    214px 171px 0 rgba(255,255,255,0.6),
    242px 208px 0 rgba(255,255,255,0.6),
    271px 185px 0 rgba(255,255,255,0.6),
    299px 153px 0 rgba(255,255,255,0.6),
    326px 196px 0 rgba(255,255,255,0.6),
    354px 169px 0 rgba(255,255,255,0.6),
    14px 222px 0 rgba(255,255,255,0.6),
    48px 244px 0 rgba(255,255,255,0.6),
    79px 235px 0 rgba(255,255,255,0.6),
    110px 260px 0 rgba(255,255,255,0.6),
    141px 249px 0 rgba(255,255,255,0.6),
    172px 228px 0 rgba(255,255,255,0.6),
    203px 257px 0 rgba(255,255,255,0.6),
    234px 232px 0 rgba(255,255,255,0.6),
    265px 265px 0 rgba(255,255,255,0.6),
    296px 240px 0 rgba(255,255,255,0.6),
    327px 253px 0 rgba(255,255,255,0.6),
    362px 228px 0 rgba(255,255,255,0.6),
    8px 298px 0 rgba(255,255,255,0.6),
    38px 315px 0 rgba(255,255,255,0.6),
    68px 287px 0 rgba(255,255,255,0.6),
    98px 329px 0 rgba(255,255,255,0.6),
    128px 304px 0 rgba(255,255,255,0.6),
    158px 340px 0 rgba(255,255,255,0.6),
    188px 312px 0 rgba(255,255,255,0.6),
    218px 345px 0 rgba(255,255,255,0.6),
    248px 298px 0 rgba(255,255,255,0.6),
    278px 331px 0 rgba(255,255,255,0.6),
    308px 308px 0 rgba(255,255,255,0.6),
    338px 355px 0 rgba(255,255,255,0.6),
    368px 320px 0 rgba(255,255,255,0.6),
    52px 378px 0 rgba(255,255,255,0.6),
    115px 395px 0 rgba(255,255,255,0.6),
    178px 370px 0 rgba(255,255,255,0.6),
    241px 400px 0 rgba(255,255,255,0.6),
    304px 382px 0 rgba(255,255,255,0.6);
}

/* Small bright stars — 1.5px dots (23 stars) */
.pib-stars-small {
  width: 1.5px;
  height: 1.5px;
  background: transparent;
  box-shadow:
    33px 45px 0 rgba(255,255,255,0.9),
    87px 31px 0 rgba(255,255,255,0.9),
    141px 71px 0 rgba(255,255,255,0.9),
    195px 18px 0 rgba(255,255,255,0.9),
    249px 84px 0 rgba(255,255,255,0.9),
    303px 49px 0 rgba(255,255,255,0.9),
    357px 23px 0 rgba(255,255,255,0.9),
    60px 139px 0 rgba(255,255,255,0.9),
    118px 162px 0 rgba(255,255,255,0.9),
    176px 118px 0 rgba(255,255,255,0.9),
    234px 151px 0 rgba(255,255,255,0.9),
    292px 127px 0 rgba(255,255,255,0.9),
    350px 144px 0 rgba(255,255,255,0.9),
    25px 205px 0 rgba(255,255,255,0.9),
    80px 228px 0 rgba(255,255,255,0.9),
    148px 219px 0 rgba(255,255,255,0.9),
    212px 244px 0 rgba(255,255,255,0.9),
    270px 211px 0 rgba(255,255,255,0.9),
    329px 238px 0 rgba(255,255,255,0.9),
    370px 264px 0 rgba(255,255,255,0.9),
    100px 302px 0 rgba(255,255,255,0.9),
    220px 318px 0 rgba(255,255,255,0.9),
    340px 290px 0 rgba(255,255,255,0.9);
}

/* Twinkle stars — place 8 <span> children inside .pib-stars-twinkle */
.pib-stars-twinkle {
  position: absolute;
  inset: 0 0 42% 0;
}
.pib-stars-twinkle span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
.pib-stars-twinkle span:nth-child(1) { top: 8%;  left: 12%; animation: twinkle 3.2s infinite 0.0s; }
.pib-stars-twinkle span:nth-child(2) { top: 15%; left: 68%; animation: twinkle 4.1s infinite 0.7s; }
.pib-stars-twinkle span:nth-child(3) { top: 6%;  left: 85%; animation: twinkle 3.7s infinite 1.4s; }
.pib-stars-twinkle span:nth-child(4) { top: 22%; left: 33%; animation: twinkle 5.0s infinite 0.3s; }
.pib-stars-twinkle span:nth-child(5) { top: 31%; left: 78%; animation: twinkle 4.5s infinite 1.1s; }
.pib-stars-twinkle span:nth-child(6) { top: 18%; left: 52%; animation: twinkle 3.9s infinite 2.0s; }
.pib-stars-twinkle span:nth-child(7) { top: 42%; left: 20%; animation: twinkle 4.8s infinite 0.5s; }
.pib-stars-twinkle span:nth-child(8) { top: 38%; left: 91%; animation: twinkle 3.4s infinite 1.8s; }

/* Fence zone — bottom 42% with jagged pointed top */
.pib-fence {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42%;
  background:
    repeating-linear-gradient(
      92deg,
      transparent 0px,
      transparent 18px,
      rgba(255,255,255,0.03) 18px,
      rgba(255,255,255,0.03) 19px
    ),
    repeating-linear-gradient(
      90deg,
      #1c1008 0px,
      #1c1008 21px,
      #16090c 21px,
      #16090c 22.5px,
      #18100a 22.5px,
      #18100a 43px,
      #1c1008 43px,
      #1c1008 44.5px,
      #18100a 44.5px,
      #18100a 65px,
      #16090c 65px,
      #16090c 66.5px
    );
  clip-path: polygon(
    0% 8%,
    2.1% 0%,   4.2% 8%,
    5.2% 1%,   6.4% 8%,
    8.5% 0%,   10.6% 8%,
    11.6% 1%,  12.8% 8%,
    14.9% 0%,  17% 8%,
    18% 1%,    19.2% 8%,
    21.3% 0%,  23.4% 8%,
    24.4% 1%,  25.6% 8%,
    27.7% 0%,  29.8% 8%,
    30.8% 1%,  32% 8%,
    34.1% 0%,  36.2% 8%,
    37.2% 1%,  38.4% 8%,
    40.5% 0%,  42.6% 8%,
    43.6% 1%,  44.8% 8%,
    46.9% 0%,  49% 8%,
    50% 1%,    51.2% 8%,
    53.3% 0%,  55.4% 8%,
    56.4% 1%,  57.6% 8%,
    59.7% 0%,  61.8% 8%,
    62.8% 1%,  64% 8%,
    66.1% 0%,  68.2% 8%,
    69.2% 1%,  70.4% 8%,
    72.5% 0%,  74.6% 8%,
    75.6% 1%,  76.8% 8%,
    78.9% 0%,  81% 8%,
    82% 1%,    83.2% 8%,
    85.3% 0%,  87.4% 8%,
    88.4% 1%,  89.6% 8%,
    91.7% 0%,  93.8% 8%,
    94.8% 1%,  96% 8%,
    98.1% 0%,  100% 7%,
    100% 100%, 0% 100%
  );
}

/* Warm amber party glow at fence boundary */
.pib-party-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38%;
  height: 120px;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, rgba(255,180,50,0.12) 0%, transparent 70%);
  animation: glow-pulse 4s infinite ease-in-out;
  pointer-events: none;
}

/* String lights containers */
.pib-lights {
  position: absolute;
  left: -10px;
  width: calc(100% + 20px);
  pointer-events: none;
}
.pib-lights-upper {
  top: 35%;
  height: 60px;
}
.pib-lights-lower {
  top: 55%;
  height: 40px;
}
.pib-lights svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   5. pib-brand COMPONENT LIBRARY
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--black); }
body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; padding: 0; color: inherit; font: inherit; cursor: pointer; }
p { margin: 0; }

/* ── Primary button — SHARP (0px radius) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 3.5vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s var(--ease), transform 0.12s;
  border: none;
  text-decoration: none;
  box-shadow: var(--yellow-glow);
}
.btn-primary:hover  { background: var(--yellow-deep); }
.btn-primary:active { transform: scale(0.97); }

/* ── Ghost / secondary button — SHARP (0px radius) ── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white-dim);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 3.2vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--char);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--white-dim); color: var(--white); }

/* ── Glass card (content on background) — 12px radius ── */
.pib-card-glass {
  background: rgba(8,8,16,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}

/* ── Solid card (forms, admin) — 12px radius ── */
.pib-card {
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 12px;
  padding: 16px;
}

/* ── Accent card border variants ── */
.pib-card--teal    { border-left: 3px solid var(--teal); }
.pib-card--magenta { border-left: 3px solid var(--magenta); }
.pib-card--yellow  { border-left: 3px solid var(--yellow); }

/* ── Gradient text ── */
.pib-grad-text {
  background: var(--grad-ytm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Info chips — 4px radius (exception) ── */
.pib-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
}

/* ── Input / textarea / select ── */
.pib-input {
  width: 100%;
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.pib-input::placeholder { color: var(--white-faint); }
.pib-input:focus { border-color: var(--yellow); }

/* ── Status badge — SHARP (0px radius) ── */
.pib-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 0;
  line-height: 1.6;
}
.pib-badge-active  { color: var(--yellow);      border-color: var(--yellow); }
.pib-badge-draft   { color: var(--white-dim);    border-color: var(--char); }
.pib-badge-closed  { color: var(--white-faint);  border-color: transparent; }
.pib-badge-live    { color: var(--yellow);       border-color: var(--yellow); }

/* ── Section label ── */
.pib-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(11px, 2.8vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* ── Divider ── */
.pib-divider {
  border: none;
  border-top: 1px solid var(--char);
  margin: 0;
}

/* ── Status message ── */
.pib-status { font-size: 14px; color: var(--white-dim); min-height: 20px; }
.pib-status.ok    { color: var(--yellow); }
.pib-status.error { color: #ff5555; }

/* ── Scanline — opt-in, hero sections only ── */
.scanline { position: relative; }
.scanline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Glitch hover ── */
.glitch-hover:hover {
  animation: glitch-hover 0.4s steps(2, end) forwards;
}

/* ── Bottom tab bar (mobile first-person nav) ── */
.pib-tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: transparent;
  z-index: 20;
  padding-bottom: env(safe-area-inset-bottom);
}

.pib-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  position: relative;
  padding-top: 6px;
  min-width: 52px;
  min-height: 44px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
}

/* Active magenta indicator line */
.pib-tab-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--magenta);
  border-radius: 1px;
  box-shadow: 0 -2px 8px rgba(255,45,120,0.8), 0 0 12px rgba(255,45,120,0.5);
}

.pib-tab-item .tab-icon,
.pib-tab-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: inherit;
}

.pib-tab-item .tab-label,
.pib-tab-item span {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  color: rgba(255,255,255,0.3);
}

/* Active state — magenta glow */
.pib-tab-item.active {
  color: var(--magenta);
}
.pib-tab-item.active .tab-icon,
.pib-tab-item.active svg {
  filter:
    drop-shadow(0 0 6px #FF2D78)
    drop-shadow(0 0 14px rgba(255,45,120,0.7))
    drop-shadow(0 0 28px rgba(255,45,120,0.4));
}
.pib-tab-item.active .tab-label,
.pib-tab-item.active span {
  color: var(--magenta);
  font-weight: 500;
}

/* Create center button — always yellow, never magenta */
.pib-tab-create {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-bottom: 12px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 60px;
  min-height: 44px;
}
.pib-tab-create-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--yellow-glow), 0 4px 20px rgba(250,255,21,0.3);
  margin-bottom: 2px;
  transition: box-shadow 0.15s var(--ease), transform 0.12s;
}
.pib-tab-create:hover .pib-tab-create-circle { box-shadow: 0 0 16px rgba(250,255,21,0.7), 0 4px 24px rgba(250,255,21,0.4); }
.pib-tab-create:active .pib-tab-create-circle { transform: scale(0.94); }
.pib-tab-create .create-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

/* ── Bottom sheet / panel ── */
.pib-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.pib-backdrop.open { opacity: 1; pointer-events: auto; }

.pib-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 430px;
  background: var(--char-deep);
  border-top: 1px solid var(--char);
  border-radius: 12px 12px 0 0;
  z-index: 201;
  transition: transform 0.3s var(--ease);
}
.pib-sheet.open { transform: translateX(-50%) translateY(0); }

.pib-sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--char);
  border-radius: 2px;
  margin: 12px auto 16px;
}

/* ── Desktop side drawer ── */
@media (min-width: 768px) {
  .pib-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 90vw);
    height: 100%;
    background: var(--char-deep);
    border-left: 1px solid var(--char);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .pib-drawer.open { transform: translateX(0); }
}

/* =====================================================
   6. PLATFORM OVERRIDES — adapts base.css visual properties
   to PIB brand. Never removes base.css layout structure.
   ===================================================== */

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* --- Links --- */
a { color: var(--white); }
a:hover { color: var(--yellow); }

/* --- Platform buttons — target base.css class names --- */
.btn, button[type="submit"] {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
}
.btn:not(.btn-primary) {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--char);
}
.btn:not(.btn-primary):hover { border-color: var(--white-dim); color: var(--white); }

/* --- Status badges (base.css uses .badge, .status-*) --- */
.badge {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  font-size: 11px;
  padding: 3px 8px;
  border: 1px solid currentColor;
}
.badge-active, .badge-live   { color: var(--yellow);      border-color: var(--yellow); background: transparent; }
.badge-draft                  { color: var(--white-dim);   border-color: var(--char);   background: transparent; }
.badge-closed, .badge-past   { color: var(--white-faint); border-color: var(--char);   background: transparent; }

/* --- Forms (override base.css input visuals) --- */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="datetime-local"],
textarea,
select {
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="datetime-local"]:focus,
textarea:focus,
select:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: none;
}
input::placeholder, textarea::placeholder { color: var(--white-faint); }
select option { background: var(--char-deep); color: var(--white); }

/* --- Cards / event rows (base.css uses .card, .event-row) --- */
.card {
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 12px;
}
.event-row {
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 12px;
}

/* --- Status messages --- */
.status-msg { font-family: var(--font-body); font-size: 14px; }
.status-msg.ok    { color: var(--yellow); }
.status-msg.error { color: #ff5555; }

/* --- Page background --- */
body { background: var(--ink); color: var(--white); font-family: var(--font-body); }
main { background: var(--ink); color: var(--white); }

/* --- Nav / header --- */
header, nav {
  background: var(--ink);
  border-bottom: 1px solid var(--char);
}

/* --- Tab nav (join wizard + manage shell horizontal) --- */
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--char);
  background: var(--ink);
}
.tab-nav a, .tab-nav button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-faint);
  white-space: nowrap;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.tab-nav a.active, .tab-nav button.active,
.tab-nav a[aria-selected="true"], .tab-nav button[aria-selected="true"] {
  color: var(--white);
  border-bottom-color: var(--yellow);
}
.tab-nav a:hover, .tab-nav button:hover { color: var(--white-dim); }

/* Mobile manage tab nav — horizontally scrollable */
@media (max-width: 767px) {
  .tab-nav {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tab-nav::-webkit-scrollbar { display: none; }
  .tab-nav a, .tab-nav button { flex-shrink: 0; }
}

/* --- Form grid --- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 576px) { .form-grid { grid-template-columns: 1fr 1fr; } }

/* --- Announcement feed cards --- */
.ann-feed-card {
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 12px;
}

/* --- Profile / avatar --- */
.avatar { border-radius: 50%; border: 2px solid var(--char); }

/* --- Bracket --- */
.bracket-match {
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 12px;
}

/* --- Desktop responsive shell --- */
@media (min-width: 768px) {
  main { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
}

/* =====================================================
   DASHBOARD RESKIN — Tab 1: Feed
   Additive overrides only. Never touch base.css or
   the Hub Grid System below.
   ===================================================== */

/* App shell — must render above fixed .pib-bg (z-index:0) */
#app { position: relative; z-index: 1; }

/* ── Tab Bar — PIB System 4 (transparent + magenta glow) ── */
#bottom-nav {
  background: rgba(2,5,16,0.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: center;
}
.nav-tab { color: rgba(255,255,255,0.35); }
.nav-tab.active { color: var(--magenta); }
/* Remove old yellow bottom bar */
.nav-tab.active::after { display: none; }
/* Magenta top indicator (shared ::before — show only when active) */
.nav-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: transparent;
  border-radius: 1px;
  transition: background 0.18s;
}
.nav-tab.active::before {
  background: var(--magenta);
  box-shadow: 0 -2px 8px rgba(255,45,120,0.8), 0 0 12px rgba(255,45,120,0.5);
}
.nav-tab.active .tab-icon {
  filter:
    drop-shadow(0 0 6px #FF2D78)
    drop-shadow(0 0 14px rgba(255,45,120,0.7))
    drop-shadow(0 0 28px rgba(255,45,120,0.4));
}
.nav-tab.active .tab-label { color: var(--magenta); }
.tab-icon { display: flex; align-items: center; justify-content: center; }
.tab-icon svg { width: 22px; height: 22px; display: block; }

/* Center upload — PIB yellow glow, 56px circle */
.nav-center-btn {
  width: 56px;
  height: 56px;
  box-shadow: var(--yellow-glow), 0 4px 20px rgba(250,255,21,0.3);
}

/* Desktop sidebar overrides */
@media (min-width: 768px) {
  #bottom-nav {
    display: flex;
    flex-direction: column;
    background: rgba(2,5,16,0.6);
    border-right: 1px solid rgba(255,255,255,0.07);
    border-top: none;
  }
  .nav-tab.active { border-left-color: var(--magenta); }
  .nav-tab.active::before { display: none; }
  .nav-center-btn svg { display: none; }
}

/* ── Topbar logo button ── */
#topbar-brand-logo-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  border-radius: 6px;
  transition: opacity 0.15s;
}
#topbar-brand-logo-btn:active { opacity: 0.7; }

/* ── Feed Tab ── */
.feed-topbar {
  background: transparent;
  border-bottom: none;
}
.feed-list {
  gap: 12px;
  padding: 12px 12px 16px;
}
.feed-card {
  background: rgba(8,8,16,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.feed-card:active { background: rgba(8,8,16,0.7); }
.feed-card-img { border-radius: 12px 12px 0 0; }
#feed-loading {
  margin: 12px;
  padding: 32px 24px;
  border-radius: 12px;
  background: rgba(8,8,16,0.55);
  border: 1px solid rgba(255,255,255,0.06);
}
.empty-state {
  margin: 12px;
  border-radius: 12px;
  background: rgba(8,8,16,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* =====================================================
   7. HUB GRID SYSTEM
   DO NOT MODIFY — migrated from hub-demo.html.
   ===================================================== */

.hub-section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(100dvh - var(--nav-h));
  padding-bottom: 0;
  overflow-y: hidden;
}

#tab-events {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - var(--nav-h));
  overflow: hidden;
  padding-bottom: 0;
}

.hub-grid-wrap {
  flex: 1;
  min-height: 0;
  padding: 4px;
  overflow: hidden;
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  height: 100%;
  width: 100%;
}

.hub-panel {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  min-width: 0;
  border-radius: 12px;
  background: var(--surface-3);
  border: 1px solid var(--border);
}
.hub-panel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
}
.hub-panel-wide  {}
.hub-panel-tall  {}
.hub-panel-quad  {}
.hub-panel-triple {}

.hub-panel-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(13px, 3.8vw, 18px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 0 8px rgba(0,212,200,0.5);
}
.hub-panel-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(9px, 2.4vw, 11px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin: 0;
}
.hub-panel-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: var(--surface-4);
  color: var(--white-faint);
  margin-bottom: 4px;
  line-height: 1.6;
}
.hub-panel-badge.open { background: var(--yellow); color: var(--black); }

.hub-g-tile {
  background: var(--grad-tm);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  min-height: 0;
  min-width: 0;
  transition: opacity 0.15s;
  padding: 8px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--teal-glow);
}
.hub-g-tile:active { opacity: 0.8; }
.hub-g-tile-icon  { font-size: clamp(16px, 5vw, 22px); line-height: 1; }
.hub-g-tile-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8px, 2.2vw, 10px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-combo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  height: 40px;
}
.hub-combo-arrow {
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
}
.hub-combo-arrow:active { color: var(--yellow); }
.hub-combo-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(10px, 2.8vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: var(--teal-glow);
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .hub-section { height: 100dvh; margin-left: 0; }
}

/* =====================================================
   8. DASHBOARD BRAND OVERRIDES
   Post-hub-grid overrides so specificity order is right.
   ===================================================== */

/* Hub panels — glass */
.hub-panel {
  background: rgba(8,8,16,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.08);
}
.hub-grid-wrap { padding: 8px; }
.hub-grid { gap: 6px; }
/* Aurora gradient background + inset glow on hub action tiles */
.hub-g-tile {
  background:
    radial-gradient(ellipse 120% 90% at 15% 20%, rgba(0,212,200,0.75) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 88% 12%, rgba(255,45,120,0.70) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 55% 85%, rgba(250,255,21,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 92% 72%, rgba(0,212,200,0.40) 0%, transparent 50%),
    #020510;
  box-shadow:
    inset 0 0 28px rgba(0,212,200,0.25),
    inset 0 0 14px rgba(255,45,120,0.20),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* Profile post grid */
.post-grid {
  gap: 6px;
  padding: 8px 12px 16px;
}
.post-thumb {
  border-radius: 6px;
  border: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

/* =====================================================
   9. JOIN WIZARD RESTYLE — Spikeball Smash brand
   Additive-only. Appended 2026-05-29.
   All rules scoped to wizard contexts (wz- prefixed selectors,
   #wz-steps, #wz-body, .wz-panel-mode). Zero step-module changes.
   ===================================================== */

/* Completed-circle :has() selector — robust cross-browser form.
   Targets all .tab-link spans that have a .active sibling coming after them. */
nav#wz-steps.wz-steps-circles:has(.tab-link.active) .tab-link:has(~ .tab-link.active)::after {
  background: var(--white) !important;
  border-color: var(--white) !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}
nav#wz-steps.wz-steps-circles:has(.tab-link.active) .tab-link:has(~ .tab-link.active) .wz-step-label {
  color: var(--white-dim) !important;
  opacity: 1 !important;
}

/* Loading spinner inside wizard — override base.css .status */
#wz-status.pib-status {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white-dim);
  background: transparent;
  border: none;
  padding: 8px 0;
}

/* Input[type=color] in team create form — keep functional */
#wz-body input[type="color"] {
  width: 48px;
  height: 40px;
  padding: 2px;
  background: var(--char-deep);
  border: 1px solid var(--char);
  border-radius: 0;
  cursor: pointer;
}

/* Input[type=file] in team create form */
#wz-body input[type="file"] {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-dim);
  background: var(--char-deep);
  border: 1px solid var(--char);
  padding: 10px 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
}
#wz-body input[type="file"]::file-selector-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface-3);
  color: var(--white-dim);
  border: 1px solid var(--char);
  border-radius: 0;
  padding: 6px 12px;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
#wz-body input[type="file"]::file-selector-button:hover {
  background: var(--surface-4);
}

/* textarea in team create */
#wz-body textarea {
  font-size: max(16px, 1rem);
  resize: vertical;
  min-height: 80px;
  padding: 12px 14px;
}

/* dc-connect button in discord.js uses class="button" bare */
#wz-body #dc-connect {
  width: 100%;
}

/* Discord skip link */
#wz-body #dc-skip-link {
  color: var(--white-dim);
  text-decoration: underline;
  font-size: 13px;
}
#wz-body #dc-skip-link:hover {
  color: var(--white);
}

/* Done step: role synced card — neutral glass, no yellow misuse */
#wz-body #dc-roles-card h3 {
  font-size: clamp(14px, 3.5vw, 16px) !important;
}

/* Retry/redo action button in done.js uses class="button" */
#wz-body #dc-roles-action {
  width: auto !important;
  flex: none !important;
}

/* ── Share card — event invite link + QR (share.js / renderShareCard) ──────
   Brand: card = 12px radius glass; buttons/url-pill = 0px sharp; --yellow is
   the interactive primary Share button only. QR sits on a white plate for
   scan contrast (the only white surface — justified by function). */
.share-card {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.share-card-head {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 700;
  font-size: clamp(11px, 2.8vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint, rgba(255,255,255,0.38));
}
.share-qr-wrap {
  align-self: center;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--rad, 12px);
  padding: 8px;
  box-sizing: border-box;
}
.share-qr-canvas { width: 100%; height: 100%; image-rendering: pixelated; display: block; }
.share-qr-loading, .share-qr-fail {
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 12px;
  color: #555;
}
.share-url-row { display: flex; align-items: stretch; gap: 8px; }
.share-url {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 13px;
  color: var(--white-dim, rgba(255,255,255,0.72));
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 10px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.share-copy-btn {
  flex-shrink: 0;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal, #00D4C8);
  background: transparent;
  border: 1px solid rgba(0,212,200,0.4);
  border-radius: 0;
  padding: 0 14px;
  min-height: 40px;
  cursor: pointer;
}
.share-copy-btn:hover { border-color: var(--teal, #00D4C8); background: rgba(0,212,200,0.08); }
.share-actions { display: flex; gap: 10px; }
.share-native-btn {
  flex: 1;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 900;
  font-size: clamp(13px, 3.5vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--yellow, #FAFF15);
  border: none;
  border-radius: 0;
  min-height: 48px;
  cursor: pointer;
  box-shadow: var(--yellow-glow, 0 0 8px rgba(250,255,21,0.4));
}
.share-native-btn:hover { background: var(--yellow-deep, #d4d800); }
.share-save-btn {
  flex: 1;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 700;
  font-size: clamp(13px, 3.5vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal, #00D4C8);
  background: transparent;
  border: 1px solid rgba(0,212,200,0.4);
  border-radius: 0;
  min-height: 48px;
  cursor: pointer;
}
.share-save-btn:hover { border-color: var(--teal, #00D4C8); background: rgba(0,212,200,0.08); }
.share-status {
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 12px;
  text-align: center;
  padding: 2px 0;
}
.share-status.ok { color: var(--teal, #00D4C8); }
.share-status.fail { color: var(--magenta, #FF2D78); }
