/*
Copyright (c) 2026 Terry Packer.

This file is part of Terry Packer's Work.
See www.terrypacker.com for further info.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

/* =============================================================
   THEME-NEON.CSS
   Cyan / magenta neon theme.
   Used by: alife_styles.css only.

   Load after base.css, instead of theme-amber.css.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@700;900&display=swap');

:root {
  /* Backgrounds */
  --bg:           #050810;
  --panel:        #090d1a;

  /* Borders / dims */
  --border:       #1a2240;
  --border-hi:    #1a2240;   /* alias for base.css scrollbar token */
  --dim:          #3a4a6a;

  /* Neon accents */
  --accent1:      #00ffe7;
  --accent2:      #ff4fcb;
  --accent3:      #ffe44f;
  --accent-primary: var(--accent1);   /* drives base range thumb */

  /* Text */
  --text:         #c8d8f8;
  --text-dim:     #97a1bb;
  --text-muted:   #6e8295;

  /* Semantic */
  --danger:       #ff4f4f;
  --success:      #4fff9f;

  /* Typography */
  --font-mono:    'Share Tech Mono', monospace;
  --font-head:    'Orbitron', sans-serif;

  /* Component tokens */
  --panel-radius: 6px;
  --glow1:        0 0 12px #00ffe766, 0 0 28px #00ffe722;
  --glow2:        0 0 12px #ff4fcb66, 0 0 28px #ff4fcb22;
}

html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
}

/* Override base range thumb to use neon accent */
input[type=range]::-webkit-slider-thumb {
  background: var(--accent1);
  box-shadow: 0 0 8px var(--accent1);
}
