/* ============================================
   Whitelabel Event Page — Token Bridge

   Maps --td-* tokens to Bootstrap --bs-* variables
   so eventpage.css works on WL hubs without
   enhancements.css. Falls back to TopDeck defaults.
   ============================================ */

:root {
  /* Accent — theme primary color */
  --td-accent: var(--bs-primary, #6ca6ea);
  --td-accent-subtle: rgba(var(--bs-primary-rgb, 108, 166, 234), 0.12);

  /* Surfaces */
  --td-surface-1: var(--bs-body-bg, #0d1117);
  --td-surface-2: var(--bs-gray-100, #161b22);
  --td-surface-elevated: var(--bs-gray-300, #21262d);

  /* Text hierarchy */
  --td-text-primary: var(--bs-gray-900, #f0f3f6);
  --td-text-secondary: var(--bs-body-color, #9ea7b3);
  --td-text-muted: var(--bs-gray-500, #656d76);

  /* Borders */
  --td-border-subtle: rgba(255, 255, 255, 0.06);
  --td-border-default: rgba(255, 255, 255, 0.10);
  --td-border-emphasis: rgba(255, 255, 255, 0.16);

  /* Radius */
  --td-radius-sm: 5px;
  --td-radius-md: 8px;
  --td-radius-lg: 12px;
  --td-radius-xl: 16px;

  /* Spacing */
  --td-space-2: 8px;
  --td-space-3: 12px;
  --td-space-4: 16px;
  --td-space-5: 24px;

  /* Typography */
  --td-font-mono: 'Berkeley Mono', 'SF Mono', 'Cascadia Code', 'Roboto Mono', monospace;

  /* Animation */
  --td-duration-fast: 120ms;
  --td-duration-base: 200ms;
  --td-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
