/* ==========================================================================
   NEON DRIFT // Cyberpunk Point & Click RPG Stylesheet
   ========================================================================== */

:root {
  --bg-obsidian: #08090d;
  --bg-panel: rgba(13, 16, 26, 0.94);
  --bg-panel-dark: rgba(7, 9, 15, 0.98);
  --border-dim: rgba(0, 240, 255, 0.2);
  --border-bright: #00f0ff;
  --neon-cyan: #00f0ff;
  --neon-pink: #ff0055;
  --neon-yellow: #fcee0a;
  --neon-green: #00ff66;
  --neon-purple: #9d00ff;
  --text-main: #d0d7de;
  --text-muted: #6b778c;
  --font-display: 'Orbitron', 'Chakra Petch', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-ui: 'Chakra Petch', sans-serif;
  --glow-cyan: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
  --glow-pink: 0 0 10px rgba(255, 0, 85, 0.5), 0 0 20px rgba(255, 0, 85, 0.2);
  --glow-yellow: 0 0 10px rgba(252, 238, 10, 0.5);
  --clip-corner: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

body.cyber-body {
  background-color: var(--bg-obsidian);
  color: var(--text-main);
  font-family: var(--font-ui);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(255, 0, 85, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(8, 9, 13, 0.95), rgba(8, 9, 13, 0.95));
}

/* ==========================================================================
   Game Wrapper & Layout
   ========================================================================== */

.game-wrapper {
  width: 1024px;
  max-width: 100vw;
  height: 720px;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-panel-dark);
  border: 1px solid var(--border-dim);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  clip-path: var(--clip-corner);
}

/* ==========================================================================
   Top HUD Header
   ========================================================================== */

.cyber-hud-top {
  height: 52px;
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.98) 0%, rgba(10, 12, 20, 0.95) 100%);
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 20;
  font-family: var(--font-mono);
}

.hud-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-glitch-badge {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.hud-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 12px;
}

.hud-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.stat-value {
  font-weight: 700;
  letter-spacing: 1px;
}

.text-neon-cyan { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
.text-neon-pink { color: var(--neon-pink); text-shadow: var(--glow-pink); }
.text-neon-yellow { color: var(--neon-yellow); text-shadow: var(--glow-yellow); }
.text-neon-green { color: var(--neon-green); }

.hud-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-cyber {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--border-dim);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-cyber:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: var(--glow-cyan);
}

.btn-scanner.active {
  background: rgba(255, 0, 85, 0.2);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: var(--glow-pink);
  animation: pulse-border 1.5s infinite alternate;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 5px rgba(255, 0, 85, 0.4); }
  100% { box-shadow: 0 0 15px rgba(255, 0, 85, 0.8); }
}

/* ==========================================================================
   Center Viewport & Canvas
   ========================================================================== */

.viewport-container {
  flex: 1;
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-canvas {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
  cursor: crosshair;
}

/* Scanlines & Vignette */
.crt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.03),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.03)
  );
  background-size: 100% 3px, 3px 100%;
  z-index: 10;
  opacity: 0.7;
}

.vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 65%, rgba(4, 5, 8, 0.8) 100%);
  z-index: 11;
}

/* ==========================================================================
   AR Cyber-Vision Overlay
   ========================================================================== */

.ar-scanner-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 12;
  border: 2px solid rgba(255, 0, 85, 0.4);
  background: rgba(255, 0, 85, 0.04);
  transition: opacity 0.3s ease;
}

.ar-scanner-layer.hidden {
  display: none;
}

.scanner-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 0, 85, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 0, 85, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.scanner-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255, 0, 85, 0.25), transparent);
  animation: scan-sweep 3s linear infinite;
}

@keyframes scan-sweep {
  0% { top: -60px; }
  100% { top: 100%; }
}

.scanner-hud-tag {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  letter-spacing: 2px;
}

/* ==========================================================================
   Context Menu & Tooltips
   ========================================================================== */

.context-menu {
  position: absolute;
  background: var(--bg-panel);
  border: 1px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan), 0 10px 25px rgba(0, 0, 0, 0.8);
  padding: 6px;
  z-index: 30;
  min-width: 140px;
  clip-path: var(--clip-corner);
}

.context-menu.hidden {
  display: none;
}

.context-header {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-cyan);
  letter-spacing: 1px;
  padding: 4px 6px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.context-buttons {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ctx-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-main);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  padding: 5px 8px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}

.ctx-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #fff;
}

.cursor-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(10, 12, 18, 0.92);
  border: 1px solid var(--border-bright);
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 25;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translate(15px, 15px);
}

.cursor-tooltip.hidden {
  display: none;
}

.tooltip-name {
  color: var(--neon-cyan);
  font-weight: 700;
  font-family: var(--font-ui);
}

.tooltip-hint {
  color: var(--text-muted);
  font-size: 0.65rem;
  font-family: var(--font-mono);
}

/* ==========================================================================
   Toast Feed
   ========================================================================== */

.toast-feed {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 28;
  pointer-events: none;
  max-width: 320px;
}

.toast-item {
  background: rgba(12, 15, 24, 0.95);
  border-left: 3px solid var(--neon-cyan);
  border-top: 1px solid var(--border-dim);
  border-right: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 8px 12px;
  font-size: 0.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation: slide-toast 0.3s ease-out forwards;
}

.toast-item.alert {
  border-left-color: var(--neon-pink);
  color: #ff99b3;
}

.toast-item.success {
  border-left-color: var(--neon-green);
  color: #a3ffcc;
}

@keyframes slide-toast {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   Dialogue System Modal
   ========================================================================== */

.dialogue-box {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: var(--bg-panel-dark);
  border: 1px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan), 0 10px 40px rgba(0, 0, 0, 0.9);
  padding: 16px;
  display: flex;
  gap: 20px;
  z-index: 35;
  clip-path: var(--clip-corner);
}

.dialogue-box.hidden {
  display: none;
}

.dialogue-portrait-wrapper {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(0, 240, 255, 0.2);
  padding-right: 16px;
}

.dialogue-portrait {
  width: 90px;
  height: 90px;
  background: #020305;
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.2);
}

.portrait-avatar {
  font-size: 2.8rem;
}

.dialogue-speaker-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-yellow);
  text-align: center;
  margin-bottom: 4px;
}

.dialogue-speaker-status {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
}

.dialogue-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dialogue-history {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  min-height: 55px;
}

.dialogue-choices {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dialogue-choice-btn {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--text-main);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 6px 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dialogue-choice-btn:hover {
  background: rgba(0, 240, 255, 0.18);
  border-color: var(--neon-cyan);
  color: #fff;
  padding-left: 16px;
}

.choice-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 2px;
  background: rgba(255, 0, 85, 0.2);
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
}

.choice-tag.tech {
  background: rgba(0, 240, 255, 0.2);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.choice-tag.bribe {
  background: rgba(252, 238, 10, 0.2);
  color: var(--neon-yellow);
  border-color: var(--neon-yellow);
}

/* ==========================================================================
   Cyberdeck Hacking Minigame Modal
   ========================================================================== */

.hacking-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 6, 12, 0.95);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hacking-modal.hidden {
  display: none;
}

.hacking-frame {
  width: 780px;
  background: var(--bg-panel-dark);
  border: 1px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan), 0 20px 60px rgba(0, 0, 0, 0.95);
  padding: 20px;
  clip-path: var(--clip-corner);
}

.hacking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.hacking-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
}

.term-prompt {
  color: var(--neon-pink);
}

.hacking-target {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-close-modal {
  background: transparent;
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 8px;
  cursor: pointer;
}

.btn-close-modal:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

.hacking-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.matrix-instructions {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  background: #020306;
  padding: 12px;
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.hex-cell {
  aspect-ratio: 1;
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.15);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.hex-cell.selectable {
  border-color: var(--neon-cyan);
  color: #fff;
  background: rgba(0, 240, 255, 0.12);
}

.hex-cell.selectable:hover {
  background: var(--neon-cyan);
  color: #000;
  font-weight: 700;
  box-shadow: var(--glow-cyan);
}

.hex-cell.selected {
  background: rgba(255, 255, 255, 0.05);
  border-color: transparent;
  color: #333;
  cursor: default;
}

.hex-cell.highlight-row {
  border-top-color: rgba(0, 240, 255, 0.5);
  border-bottom-color: rgba(0, 240, 255, 0.5);
}

.hex-cell.highlight-col {
  border-left-color: rgba(0, 240, 255, 0.5);
  border-right-color: rgba(0, 240, 255, 0.5);
}

/* Hacking info right col */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.buffer-section {
  margin-bottom: 16px;
}

.buffer-slots {
  display: flex;
  gap: 6px;
  background: #020306;
  padding: 8px;
  border: 1px solid rgba(0, 240, 255, 0.15);
  min-height: 44px;
}

.buffer-slot {
  width: 38px;
  height: 38px;
  border: 1px dashed rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-cyan);
}

.buffer-slot.filled {
  border-style: solid;
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.15);
  font-weight: 700;
}

.targets-section {
  margin-bottom: 16px;
}

.sequence-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seq-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seq-item.completed {
  border-color: var(--neon-green);
  background: rgba(0, 255, 102, 0.08);
}

.seq-name {
  font-size: 0.75rem;
  color: var(--text-main);
}

.seq-codes {
  display: flex;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--neon-pink);
}

.seq-codes span.matched {
  color: var(--neon-green);
  font-weight: 700;
}

.hacking-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-yellow);
  padding: 8px;
  background: rgba(252, 238, 10, 0.05);
  border: 1px solid rgba(252, 238, 10, 0.2);
}

/* ==========================================================================
   Inspect Modal
   ========================================================================== */

.inspect-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspect-modal.hidden {
  display: none;
}

.inspect-card {
  width: 420px;
  background: var(--bg-panel-dark);
  border: 1px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  padding: 16px;
  clip-path: var(--clip-corner);
}

.inspect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--neon-cyan);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.inspect-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 16px;
}

.inspect-icon-large {
  font-size: 3rem;
  margin-bottom: 12px;
}

.inspect-desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 10px;
}

.inspect-stats {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-pink);
}

.inspect-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ==========================================================================
   Bottom HUD (Inventory + Objectives + Abilities)
   ========================================================================== */

.cyber-hud-bottom {
  height: 110px;
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.95) 0%, rgba(18, 22, 34, 0.98) 100%);
  border-top: 1px solid var(--border-dim);
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 12px;
  padding: 10px 16px;
  z-index: 20;
}

.panel-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-green);
}

.hud-objective-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 12px;
  display: flex;
  flex-direction: column;
}

.objective-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--neon-yellow);
  font-weight: 700;
  margin-bottom: 4px;
}

.objective-desc {
  font-size: 0.72rem;
  color: var(--text-main);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hud-inventory-panel {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 12px;
}

.inventory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inventory-hint {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-cyan);
}

.inventory-slots {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  overflow-x: auto;
}

.inv-slot {
  width: 58px;
  height: 58px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.inv-slot:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-cyan);
}

.inv-slot.selected {
  border-color: var(--neon-pink);
  background: rgba(255, 0, 85, 0.15);
  box-shadow: var(--glow-pink);
}

.inv-icon {
  font-size: 1.4rem;
}

.inv-name {
  font-size: 0.55rem;
  font-family: var(--font-mono);
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52px;
  text-align: center;
}

.hud-ability-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.ability-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ability-btn.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
}

.ability-btn:hover {
  color: #fff;
  border-color: var(--neon-cyan);
}
