/* Core Theme Variables */
:root {
  /* Brand colors */
  --blue: #1685ff;
  --blue-light: #3198ff;
  --red: #e32b2b;

  /* Neutral palette */
  --white: #f4f7fb;
  --muted: #8e9bad;

  /* Panel backgrounds (with transparency) */
  --panel: rgba(7, 13, 22, 0.86);
  --card: rgba(13, 21, 33, 0.78);
  --card-hover: rgba(22, 34, 51, 0.92);

  /* Borders & accents */
  --border: rgba(255, 255, 255, 0.09);

  /* Text shadows for legibility over backgrounds */
  --text-shadow-main: 0 3px 15px rgba(0, 0, 0, 0.7);
  --text-shadow-sub: 0 2px 8px rgba(0, 0, 0, 0.8);

  /* Animation timings */
  --police-blue-duration: 1s;
  --police-red-delay: 0.46s;
}

/* Light theme override (optional) */
[data-theme="light"] {
  --panel: rgba(255, 255, 255, 0.8);
  --card: rgba(247, 250, 253, 0.9);
}
