/* ------------------------------------------------------------------
   miraitowaves identity — deep-sea teal accent
   Loaded after the theme stylesheets; overrides are intentionally
   narrow (links, icon hover, selection) so the minimal-light
   philosophy stays intact. To change the identity color, edit the
   values in the two blocks below.
   ------------------------------------------------------------------ */

:root {
  --accent: #0e7490;                 /* deep-sea teal, light mode   */
  --accent-strong: #155e75;          /* hover, light mode           */
  --accent-ring: rgba(14, 116, 144, 0.35);  /* selection highlight  */
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #4cc9dd;               /* brighter teal, dark mode    */
    --accent-strong: #86e0ee;
    --accent-ring: rgba(76, 201, 221, 0.40);
  }
}

/* Content links */
a { color: var(--accent); }
a:hover { color: var(--accent-strong); }

/* Social / icon row hover picks up the identity color */
.social-icons a:hover { color: var(--accent) !important; }

/* Text selection */
::selection { background: var(--accent-ring); }
