﻿/* ========== THEME: CYBER LAB ========== */
/* Cyan + Green research lab aesthetic */
/* All structural CSS is in base.css */

:root {
  /* Core colors */
  --bg-primary: #050a0e;
  --bg-secondary: #0a1218;
  --text-primary: #c5f5ff;
  --text-secondary: #9de3f5;
  --accent-bright: #00ff88;
  --accent-glow: #00ff88;
  
  /* Component colors */
  --border-color: rgba(0, 229, 255, 0.4);
  --border-bright: rgba(0, 229, 255, 0.7);
  --glow-color: rgba(0, 229, 255, 0.5);
  --shadow-color: rgba(0, 229, 255, 0.3);
}

/* Theme-specific background gradient */
.crt-theme {
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.05), transparent 60%),
    radial-gradient(circle at bottom right, rgba(0, 229, 255, 0.08), var(--bg-primary) 70%);
}
