/* ==============================
   BOBIT ARCADE — THEME TOKENS
   Change the look of the entire site here.
   ============================== */

:root {
  /* Backgrounds */
  --color-bg: #0b0f14;
  --color-bg-elevated: #111820;
  --color-surface: #161d27;
  --color-surface-hover: #1c2533;
  --color-surface-muted: #0f141c;

  /* Brand */
  --color-primary: #3dffa8;
  --color-primary-hover: #5fffb8;
  --color-primary-rgb: 61, 255, 168;
  --color-primary-dim: rgba(var(--color-primary-rgb), 0.12);
  --color-primary-glow: rgba(var(--color-primary-rgb), 0.35);
  --color-secondary: #7c6bff;
  --color-secondary-rgb: 124, 107, 255;
  --color-secondary-dim: rgba(var(--color-secondary-rgb), 0.12);
  --color-secondary-border: rgba(var(--color-secondary-rgb), 0.3);

  /* Semantic */
  --color-success: var(--color-primary);
  --color-warning: #ffc14d;
  --color-warning-dim: rgba(255, 193, 77, 0.1);
  --color-warning-border: rgba(255, 193, 77, 0.25);
  --color-danger: #ff5c7a;

  /* Text */
  --color-text: #eef2f8;
  --color-text-muted: #8b96a8;
  --color-text-subtle: #6d7789;
  --color-text-inverse: var(--color-bg);

  /* Borders */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-border-accent: rgba(var(--color-primary-rgb), 0.35);
  --color-surface-inset: rgba(255, 255, 255, 0.05);

  /* Overlays */
  --color-bg-rgb: 11, 15, 20;
  --color-bg-overlay: rgba(var(--color-bg-rgb), 0.85);
  --color-bg-overlay-solid: rgba(var(--color-bg-rgb), 0.97);

  /* Typography */
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.75rem;
  --font-size-5xl: 3.5rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 24px var(--color-primary-glow);

  /* Layout */
  --width-prose: 540px;
  --width-content: 720px;
  --width-container: 1120px;
  --width-wide: 1280px;
  --width-card: 560px;
  --width-roadmap: 640px;
  --width-hero-title: 800px;
  --width-hero-subtitle: 600px;
  --width-btn-mobile: 280px;
  --header-height: 64px;
  --logo-height: 28px;
  --layout-main-offset: 200px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}
