/* ═════════════════════════════════════════════════════════
   playkits.tech — Shared CSS Design Tokens
   Used by both homepage (index.html) and subguard/
   ═════════════════════════════════════════════════════════ */

:root {
  /* Background */
  --bg: #f0f2f8;
  --surface: #ffffff;
  --surface-2: #f8f9fc;

  /* Border */
  --border: #e4e7ef;
  --border-light: #f0f2f8;

  /* Text */
  --text: #1e2130;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;

  /* Brand */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eef2ff;
  --primary-mid: #c7d2fe;

  /* Semantic */
  --danger: #ef4444;
  --danger-hover: #dc2626;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;
  --warning: #f59e0b;
  --warning-hover: #d97706;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  --success: #10b981;
  --success-bg: #ecfdf5;
  --success-border: #6ee7b7;
  --info: #3b82f6;
  --info-bg: #eff6ff;

  /* Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 2px 8px rgba(99,102,241,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(99,102,241,.12), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);

  /* Transition */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

[data-theme="dark"] {
  /* Background */
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface-2: #22252f;

  /* Border */
  --border: #2a2d3a;
  --border-light: #1f222b;

  /* Text */
  --text: #e4e6eb;
  --text-secondary: #a8acbf;
  --text-tertiary: #8b8fa3;

  /* Brand */
  --primary-light: rgba(99,102,241,.15);
  --primary-mid: rgba(99,102,241,.35);

  /* Semantic */
  --danger-bg: rgba(239,68,68,.12);
  --danger-border: rgba(239,68,68,.25);
  --warning-bg: rgba(245,158,11,.12);
  --warning-border: rgba(245,158,11,.25);
  --success-bg: rgba(16,185,129,.12);
  --success-border: rgba(16,185,129,.25);
  --info-bg: rgba(59,130,246,.12);

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.15);
  --shadow: 0 2px 8px rgba(0,0,0,.2), 0 1px 2px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.25), 0 2px 4px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.4);
}
