/* Friends / support area — shared between game.html and home.html.
   Uses var(..., fallback) throughout so it works whether the page defines
   the full playfieldStyles.css theme (game.html) or only bridges a handful
   of vars from its own theme system (home.html — see the useEffect that
   syncs --accent/--muted/--btn/--btn-text/--gold/--bg from the active
   THEMES entry). */

.panel-friends {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-slot {
  background: rgba(0,255,184,0.04);
  border: 1px solid rgba(0,255,184,0.18);
  border-radius: 5px;
  padding: 11px;
}
.promo-label {
  font-family: var(--font-b, 'IBM Plex Mono', monospace);
  font-size: 8px;
  color: var(--muted, rgba(232,240,239,0.5));
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.promo-name {
  font-family: var(--font-h, 'Syne', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent, #00FFB8);
  line-height: 1.3;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0,255,184,0.4);
}
.promo-body {
  font-family: var(--font-b, 'IBM Plex Mono', monospace);
  font-size: 10px;
  color: var(--muted, rgba(232,240,239,0.5));
  line-height: 1.5;
  margin-bottom: 8px;
}
.promo-cta {
  font-family: var(--font-b, 'IBM Plex Mono', monospace);
  font-size: 9px;
  font-weight: 600;
  color: var(--btn-text, #020507);
  background: var(--btn, #00FFB8);
  padding: 4px 0;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0,255,184,0.35);
  letter-spacing: 0.06em;
}

/* ── Buy Me a Coffee button ─────────────────────────────── */
.support-slot { text-align: center; overflow: hidden; }
.bmc-btn, .bmc-btn * {
  font-family: var(--font-h, 'Syne', sans-serif) !important;
  font-size:   11px          !important;
  line-height: 1.4           !important;
  white-space: normal        !important;
  word-break:  break-word    !important;
  max-width:   100%          !important;
  min-width:   0             !important;
  box-sizing:  border-box    !important;
  height:      auto          !important;
}
.bmc-btn {
  display:     block         !important;
  width:       100%          !important;
  padding-top: 8px           !important;
  padding-bottom: 8px        !important;
}
