/*
 * theme.css — SceneForge branding.
 * The user explicitly asked for a dark cinematic interface, so the full
 * surface/ink palette is re-tuned here (not just --accent) to get a coherent
 * dark studio look across every page. Everything else (spacing, radius,
 * shape, motion) is left at the platform default.
 */

:root {
  /* surfaces — near-black, warm charcoal, like a grading suite */
  --canvas: #0b0b10;
  --surface: #131218;
  --card: #18171f;
  --border: #2a2830;
  --border-strong: #3a3742;

  /* ink */
  --ink: #f3f1f6;
  --muted: #a39dae;
  --icon: #8f899b;

  /* accent — spotlight gold */
  --accent: #e3a94c;
  --accent-soft: #2b2114;
  --accent-ink: #241804;

  /* status, tuned for the dark surfaces above */
  --success: #6fcf97;
  --success-soft: #15271d;
  --warning: #f2b84b;
  --warning-soft: #2b2110;
  --danger: #ef6461;
  --danger-soft: #2a1414;
}
