/* ============================================
   SAMURAI Design System — CSS Variables
   Palette: RankMyAds dark + Crimson Samurai
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ── Backgrounds (RankMyAds pure dark) ── */
  --bg-primary:    #080808;
  --bg:            #0e0e0e;
  --surface:       #161616;
  --surface-light: #1e1e1e;
  --bg-card:       #111111;
  --bg-card-hover: #1a1a1a;

  /* ── Borders ── */
  --border:        #2a2a2a;
  --border-subtle: rgba(220, 38, 38, 0.12);
  --border-active: rgba(220, 38, 38, 0.4);

  /* ── Text ── */
  --text:       #e8e8e8;
  --text-muted: #999999;
  --text-dim:   #666666;

  /* ── Accent: Crimson Samurai ── */
  --accent:        #dc2626;
  --accent-hover:  #b91c1c;
  --accent-light:  #ef4444;
  --accent-subtle: rgba(220, 38, 38, 0.1);

  /* ── Secondary accents ── */
  --amber:   #f59e0b;
  --cyan:    #06b6d4;
  --green:   #22c55e;
  --purple:  #8b5cf6;
  --pink:    #ec4899;
  --blue:    #3b82f6;

  /* ── Status ── */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger:  #ef4444;
  --info:    #06b6d4;

  /* ── Gradients ── */
  --gradient-primary:  linear-gradient(135deg, #dc2626, #f59e0b);
  --gradient-hero:     linear-gradient(135deg, #dc2626 0%, #b91c1c 40%, #f59e0b 100%);
  --gradient-subtle:   linear-gradient(135deg, #dc2626, #8b5cf6);
  --gradient-dark:     linear-gradient(180deg, #080808 0%, #0e0e0e 100%);

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

  /* ── Shadows ── */
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 0 40px rgba(220, 38, 38, 0.12);
  --shadow-modal: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-cta:   0 4px 16px rgba(220, 38, 38, 0.3);

  /* ── Layout ── */
  --max-width:    1400px;
  --header-h:     64px;
  --gap:          24px;

  /* ── Fonts ── */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}
