html, body { touch-action: pan-x pan-y; }
/* ========================================
   ДоброКаст — Design Tokens (extrait d'Unified Beta)
   Palette Izba + accent Dobrograd
   ======================================== */

:root {
  --font-display: 'Montserrat', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Light — Izba legacy */
  --bg: #FAFAFA;
  --card: #FFFFFF;
  --text: #2D3741;
  --subtext: #718096;

  /* Accents */
  --accent: #1C9673;        /* Dobrograd vert */
  --accent-light: #E6F4F1;
  --gold: #B8860B;          /* Izba or */
  --gold-light: #F7E8B5;
  --brick: #1C9673;         /* Izba rouge brique */
  --brick-light: rgba(139,46,46,0.08);

  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
}

[data-theme="dark"] {
  --bg: #111827;
  --card: #1F2937;
  --text: #F3F4F6;
  --subtext: #9CA3AF;
  --accent: #34D399;
  --accent-light: #064E3B;
  --gold: #B8860B;
  --gold-light: #2D2310;
  --brick: #C97070;
  --brick-light: rgba(201,112,112,0.12);
  --border: #374151;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.30);
  --shadow: 0 4px 16px rgba(0,0,0,0.40);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.50);
}
