/* Placeholder for brand-specific selectors if needed.
   Most colors are set via CSS variables written to :root by JS. */

/* Kill Chrome mobile tap highlight globally */
* {
  -webkit-tap-highlight-color: transparent;
}

.mode-dark {
  /* Optionally use this to force dark mode styles if not relying on media queries. */
}

/* RGB color variables for transparency effects in chat.css */
:root {
  /* Digital Grease RGB values */
  --primary-rgb: 7, 147, 255;        /* #0793FF */
  --secondary-rgb: 51, 204, 119;     /* #33cc77 */
  --accent-rgb: 245, 166, 35;        /* #f5a623 */

  /* Tsunami Swami RGB values (overridden by brand.json palette) */
  --primary-ts-rgb: 0, 90, 163;      /* #005aa3 light mode */
  --primary-ts-dark-rgb: 90, 167, 255; /* #5aa7ff dark mode */
}

/* ── Bot / LLM Discovery Link (injected at build time) ── */

.bot-link {
  text-align: center;
  padding: 0.5rem 0 0;
  font-size: 0.85rem;
}

.bot-link__anchor {
  color: var(--ink-muted, #888);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.bot-link__anchor:hover {
  opacity: 1;
  text-decoration: underline;
}
