/* Retro Cyber Theme - 80s Style */

:root {
  --neon-cyan: #00ffff;
  --neon-magenta: #ff00ff;
  --neon-purple: #9d00ff;
  --neon-green: #00ff66;
  --neon-blue: #0077ff;
  --neon-red: #ff2a6d;
  --cyber-black: #05080c;
  --cyber-dark-blue: #0b1729;
  --cyber-grid-color: rgba(0, 255, 255, 0.1);
  --cyber-text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
  --cyber-box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);

  /* Enhanced Dark Theme - Slightly Lighter */
  --cyber-bg: #131e2e;
  --cyber-bg-lighter: #1c2a3b;
  --cyber-card-bg: rgba(26, 42, 58, 0.9);
  --cyber-text: #e1e1ff;
  --cyber-accent-cyan: #00c8ff;
  --cyber-accent-green: #00ff9d;
  --cyber-accent-magenta: #fb37ff;
  --cyber-accent-yellow: #ffde00;
  --cyber-accent-red: #ff3c5f;
  --cyber-glow-cyan: 0 0 10px rgba(0, 200, 255, 0.7);
  --cyber-glow-green: 0 0 10px rgba(0, 255, 157, 0.7);
  --cyber-glow-magenta: 0 0 10px rgba(251, 55, 255, 0.7);
  --cyber-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  --cyber-card-border: rgba(0, 200, 255, 0.4);
}

/* Base Styling */
body.cyber-bg {
  background-color: var(--cyber-bg);
  background-image: 
    linear-gradient(0deg, transparent 24%, var(--cyber-grid-color) 25%, var(--cyber-grid-color) 26%, transparent 27%, transparent 74%, var(--cyber-grid-color) 75%, var(--cyber-grid-color) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, var(--cyber-grid-color) 25%, var(--cyber-grid-color) 26%, transparent 27%, transparent 74%, var(--cyber-grid-color) 75%, var(--cyber-grid-color) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  font-family: 'Orbitron', sans-serif;
  color: var(--cyber-text);
  min-height: 100vh;
  position: relative;
}

/* Scanlines effect - adjusted for slightly lighter dark theme */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 50%
  );
  background-size: 100% 4px;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.5;
}

/* CRT effect - adjusted for slightly lighter dark theme */
.crt-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
  z-index: 9997;
  opacity: 0.6;
}

/* Base styles for light theme */
.cyber-bg {
  background: linear-gradient(135deg, var(--cyber-bg-light) 0%, #d0e0f0 100%);
  color: var(--cyber-text-light);
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  position: relative;
}

.cyber-bg.dark-mode {
  background: linear-gradient(135deg, var(--cyber-bg-dark) 0%, #101820 100%);
  color: var(--cyber-text-dark);
}

/* CRT and Scanline Effects */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%);
  background-size: 100% 4px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.3;
}

.dark-mode .scanlines {
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 50%
  );
  opacity: 0.6;
}

.crt-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(5, 8, 12, 0) 0%, rgba(5, 8, 12, 0.8) 100%);
  z-index: 9998;
  pointer-events: none;
  opacity: 0.5;
}

.crt-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center, var(--neon-magenta), 0 0 10px var(--neon-magenta);
    transparent 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 9997;
  opacity: 0.6;
}

.dark-mode .crt-effect {
  background: radial-gradient(
    ellipse at center,
    transparent 70%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Typography */
.cyber-text {
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  text-shadow: var(--cyber-text-shadow);
  letter-spacing: 1px;
}

.cyber-heading {
  font-family: 'Press Start 2P', cursive;
  color: var(--neon-cyan);
  text-shadow: var(--cyber-text-shadow);
  position: relative;
  display: inline-block;
  margin-right: 20px;
  padding: 0.5rem 1rem;
}

.cyber-heading-decoration {
  position: absolute;
  right: -15px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  box-shadow: var(--cyber-text-shadow);
  animation: blink-fast 1s infinite;
  will-change: opacity, transform;
  transform: translateZ(0);
}

.cyber-subtitle {
  font-family: 'VT323', monospace;
  font-size: 0.7rem;
  color: var(--neon-blue);
  letter-spacing: 1px;
  text-shadow: var(--cyber-text-shadow);
  position: relative;
}

.text-neon-cyan {
  color: #0ff !important;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff !important;
}

.text-neon-magenta {
  color: var(--neon-magenta) !important;
  text-shadow: 0 0 5px var(--neon-magenta), 0 0 10px var(--neon-magenta);
}

.text-neon-green {
  color: #0f0 !important;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0 !important;
}

.text-neon-red {
  color: #f55 !important;
  text-shadow: 0 0 5px #f55, 0 0 10px #f55 !important;
}

.text-neon-yellow {
  color: #ff5 !important;
  text-shadow: 0 0 5px #ff5, 0 0 10px #ff5 !important;
}

/* Header */
.cyber-header {
  background: linear-gradient(180deg, var(--cyber-dark-blue) 0%, var(--cyber-black) 100%);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* Header styles */
.cyber-header {
  background: linear-gradient(90deg, #1c3855 0%, #0d253d 100%);
  border-bottom: 1px solid var(--cyber-accent-cyan);
  box-shadow: var(--cyber-shadow);
  padding: 10px 0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cyber-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white !important;
  font-family: 'Orbitron', sans-serif;
  text-shadow: var(--cyber-glow-cyan);
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.cyber-subtitle {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: -5px;
}

/* Cards */
.cyber-card {
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 20, 40, 0.7);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.cyber-card {
  background: var(--cyber-card-bg);
  border: 1px solid var(--cyber-card-border);
  border-radius: 6px;
  box-shadow: var(--cyber-shadow);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-card:hover {
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cyber-card:hover {
  box-shadow: 0 6px 12px rgba(0, 200, 255, 0.2);
  transform: translateY(-2px);
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.cyber-card:hover::before {
  left: 100%;
  transition: 0.8s ease-in-out;
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyber-accent-cyan), transparent);
}

.cyber-card-decoration {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: linear-gradient(45deg, transparent 50%, var(--neon-cyan) 50%);
}

.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  color: var(--cyber-accent-cyan);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.dark-mode .cyber-card-title {
  color: var(--cyber-accent-cyan);
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.cyber-card-header {
  background-color: rgba(20, 30, 45, 0.7);
  border-bottom: 1px solid var(--cyber-card-border);
  padding: 0.75rem 1.25rem;
}

.dark-mode .cyber-card {
  background: rgba(26, 42, 58, 0.9);
  border-color: rgba(0, 200, 255, 0.5);
}

.dark-mode .cyber-card-header {
  background-color: rgba(20, 30, 45, 0.7);
}

.cyber-card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--cyber-accent-cyan);
  border-right: 2px solid var(--cyber-accent-cyan);
  opacity: 0.5;
}

.cyber-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.cyber-primary .cyber-stat-value {
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
}

.cyber-success .cyber-stat-value {
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green);
}

.cyber-danger .cyber-stat-value {
  color: var(--neon-red);
  text-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red);
}

.cyber-warning .cyber-stat-value {
  color: #ffcc00;
  text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00;
}

/* Form Elements */
.cyber-select {
  background-color: rgba(11, 23, 41, 0.8);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: 'VT323', monospace;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath fill='%2300ddff' d='M0 0l4 6 4-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 6px;
  appearance: none;
}

.cyber-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
  border-color: var(--neon-cyan);
}

.cyber-switch .form-check-input {
  background-color: rgba(5, 8, 12, 0.8);
  border-color: var(--neon-cyan);
  background-color: rgba(0, 0, 0, 0.3);
  border-color: var(--cyber-border);
  height: 1.25rem;
  width: 2.25rem;
}

.cyber-switch .form-check-input:checked {
  background-color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background-color: var(--cyber-primary);
  border-color: var(--cyber-primary);
}

.cyber-switch .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 0.15rem var(--shadow-cyan);
}

.cyber-switch .form-check-label {
  padding-left: 0.25rem;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  color: var(--cyber-light);
  font-size: 0.85rem;
}

/* Indicators and Animation Effects */
.blink-slow {
  animation: blink-slow 2s infinite;
  will-change: opacity;
  transform: translateZ(0);
}

.blink-fast {
  animation: blink-fast 1s infinite;
  will-change: opacity;
  transform: translateZ(0);
}

.cyber-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--neon-magenta);
  box-shadow: 0 0 10px var(--neon-magenta);
  will-change: opacity, transform;
  transform: translateZ(0);
}

.cyber-icon-spin {
  animation: spin 2s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.cyber-border-bottom {
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
}

.cyber-main {
  background-color: rgba(5, 8, 12, 0.7);
}

.table {
  color: #d1f7ff;
  border-color: rgba(0, 255, 255, 0.2);
}

.table thead th {
  background-color: rgba(230, 240, 250, 0.7);
  color: #176fc1;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 200, 255, 0.3);
}

.table tbody tr {
  background-color: rgba(11, 23, 41, 0.4);
  transition: all 0.2s ease;
}

.table tbody tr:hover {
  background-color: rgba(0, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--neon-white);
}

.table > :not(caption) > * > * {
  background-color: transparent;
  border-color: var(--cyber-border);
}

.table .text-center {
  text-align: center;
}

/* Tables */
.cyber-table {
  border-collapse: separate;
  border-spacing: 0;
}

.cyber-table thead th {
  background-color: rgba(230, 240, 250, 0.7);
  color: #176fc1;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 200, 255, 0.3);
}

.cyber-table tbody tr {
  transition: all 0.2s ease;
}

.cyber-table tbody tr:hover {
  background-color: rgba(0, 200, 255, 0.05);
}

.dark-mode .cyber-table thead th {
  background-color: rgba(20, 30, 45, 0.7);
  color: var(--cyber-accent-cyan);
}

.dark-mode .cyber-table tbody tr:hover {
  background-color: rgba(0, 200, 255, 0.1);
}

/* Animation Keyframes - Optimized */
@keyframes blink-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes blink-fast {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes cyber-progress {
  0% { background-position: 0 0; }
  100% { background-position: 20px 0; }
}

@keyframes glitch {
  0%, 100% { transform: none; opacity: 1; }
  7% { transform: skew(-0.5deg, -0.9deg); }
  10% { transform: none; }
  20% { transform: skew(0.8deg, -0.1deg); opacity: 1; }
  23% { transform: none; }
  50% { transform: none; opacity: 1; }
  51% { opacity: 0.8; }
  52% { opacity: 1; }
  53% { opacity: 0.8; }
  54% { opacity: 1; }
  80% { transform: none; opacity: 1; }
  83% { transform: skew(1deg, 0deg); }
  92% { transform: none; }
  100% { transform: none; opacity: 1; }
}

@keyframes glitch-effect {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

@keyframes button-glitch {
  0% { opacity: 0; }
  30% { opacity: 0.3; }
  50% { opacity: 0; }
  70% { opacity: 0.3; }
  100% { opacity: 0; }
}

/* Media Queries for responsiveness */
@media (max-width: 767.98px) {
  .cyber-sidebar {
    background-color: rgba(11, 23, 41, 0.95);
  }
  
  .cyber-heading {
    font-size: 1.4rem;
  }
  
  .cyber-stat-value {
    font-size: 1.8rem;
  }
}

/* Add these styles at the end of the existing retro-cyber.css file */

/* Connection Status Indicator */
.cyber-connection-status {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 100%;
}

.cyber-connection-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 5px currentColor;
}

.cyber-connection-indicator.connected {
  background-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}

.cyber-connection-indicator.disconnected {
  background-color: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red);
}

.cyber-connection-indicator.error {
  background-color: #ffcc00;
  box-shadow: 0 0 10px #ffcc00;
  animation: blink-fast 0.5s infinite;
}

.cyber-connection-text {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
}

/* Terminal Overlay */
.cyber-terminal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 12, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 1s ease;
}

.cyber-terminal {
  background-color: rgba(5, 8, 12, 0.9);
  border: 1px solid var(--neon-cyan);
  border-radius: 5px;
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  height: 300px;
  overflow-y: auto;
  padding: 10px;
  box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.cyber-terminal-line {
  display: block;
  line-height: 1.2;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Error Overlay */
.cyber-error-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 23, 41, 0.9);
  border: 2px solid var(--neon-red);
  border-radius: 5px;
  box-shadow: 0 0 20px var(--neon-red);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cyber-error-container {
  background-color: rgba(11, 23, 41, 0.9);
  border: 2px solid var(--neon-red);
  border-radius: 5px;
  box-shadow: 0 0 20px var(--neon-red);
  width: 90%;
  max-width: 500px;
}

.cyber-error-header {
  background-color: var(--neon-red);
  color: #fff;
  padding: 10px 20px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cyber-error-message {
  padding: 20px;
  text-align: center;
  color: #fff;
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
}

/* Active button state */
.cyber-button-active {
  transform: scale(0.95);
  box-shadow: 0 0 20px currentColor !important;
}

/* Notification system styles */
.cyber-notifications-container {
  position: fixed;
  top: 70px;
  right: 15px;
  max-width: 350px;
  z-index: 9998;
}

.cyber-notification {
  position: relative;
  border: 1px solid var(--neon-cyan);
  background-color: rgba(11, 23, 41, 0.9);
  color: var(--neon-cyan);
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--neon-cyan);
  transform: translateX(120%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.cyber-notification.show {
  transform: translateX(0);
}

.cyber-notification-glitch {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: -1;
}

.cyber-notification-content {
  font-family: 'VT323', monospace;
  font-size: 1rem;
}

/* Notification variations */
.cyber-notification-success {
  border-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  color: var(--neon-green);
}

.cyber-notification-error {
  border-color: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red);
  color: var (--neon-red);
}

.cyber-notification-warning {
  border-color: #ffcc00;
  box-shadow: 0 0 10px #ffcc00;
  color: #ffcc00;
}

/* Add some keyframe animations */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

@keyframes cyber-progress {
  0% { background-position: 0 0; }
  100% { background-position: 20px 0; }
}

/* Loading animation */
.cyber-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cyber-loading-text {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: blink-slow 1s infinite;
}

.cyber-loading-dots {
  display: flex;
  margin-bottom: 15px;
}

.cyber-loading-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--neon-cyan);
  animation: loading-dot 1s infinite;
}

.cyber-loading-bars {
  display: flex;
  align-items: flex-end;
  height: 50px;
  width: 100%;
  max-width: 200px;
  justify-content: center;
}

.cyber-loading-bar {
  width: 6px;
  height: 10px;
  margin: 0 4px;
  background-color: var(--neon-cyan);
  box-shadow: 0 0 5px var(--neon-cyan);
  animation: loading-bar 1s infinite;
}

@keyframes loading-dot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes loading-bar {
  0%, 100% { height: 10px; }
  50% { height: 40px; }
}

/* Complete animation */
.cyber-loading-complete {
  animation: complete-fade 1s forwards;
}

@keyframes complete-fade {
  0% { opacity: 1; }
  80% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(0.8); }
}

/* Custom cyber form elements */
.cyber-input, 
.cyber-textarea, 
.cyber-select {
  background-color: rgba(5, 8, 12, 0.7) !important;
  border: 1px solid var(--neon-cyan) !important;
  color: var(--neon-cyan) !important;
  font-family: 'VT323', monospace !important;
  font-size: 1.1rem !important;
  box-shadow: inset 0 0 5px rgba(0, 255, 255, 0.3) !important;
}

.cyber-input:focus, 
.cyber-textarea:focus, 
.cyber-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25), inset 0 0 5px rgba(0, 255, 255, 0.3) !important;
  border-color: var(--neon-cyan) !important;
}

.cyber-label {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Form controls */
.cyber-input, 
.cyber-select, 
.cyber-textarea {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 200, 255, 0.3);
  color: #333;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cyber-input:focus, 
.cyber-select:focus, 
.cyber-textarea:focus {
  border-color: rgba(0, 200, 255, 0.7);
  box-shadow: 0 0 0 0.25rem rgba(0, 200, 255, 0.25);
  outline: 0;
}

.dark-mode .cyber-input, 
.dark-mode .cyber-select,
.dark-mode .cyber-textarea {
  background-color: rgba(20, 30, 45, 0.9);
  border-color: rgba(0, 200, 255, 0.3);
  color: #e1e1ff;
}

.cyber-label {
  font-weight: 500;
  color: #2273c3;
}

.dark-mode .cyber-label {
  color: var(--cyber-accent-cyan);
}

/* Cyber Unlock Screen Styles */
.cyber-unlock-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.cyber-unlock-progress {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-unlock-progress-bar {
  width: 300px;
  height: 6px;
  background: rgba(0, 255, 153, 0.2);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
}

.cyber-unlock-progress-fill {
  width: 0%;
  height: 100%;
  background: #0f9;
  box-shadow: 0 0 10px #0f9;
}

.cyber-unlock-status {
  position: absolute;
  top: 80px;
  width: 100%;
  text-align: center;
  color: #0f9;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  text-shadow: 0 0 5px #0f9;
  opacity: 0;
  transition: opacity 0.5s;
}

.cyber-unlock-system-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #0f9;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  text-align: left;
  opacity: 0.7;
  text-shadow: 0 0 5px #0f9;
}

.cyber-unlock-footer {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #0f9;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  text-align: right;
  opacity: 0.7;
  text-shadow: 0 0 5px #0f9;
}

/* Cyber modal styles for unlock dialogs */
.cyber-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cyber-modal-content {
  background-color: #0a0a1a;
  border: 1px solid #0f9;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
  padding: 20px;
  max-width: 500px;
  width: 100%;
}

.cyber-modal-title {
  color: #0f9;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
  text-shadow: 0 0 5px #0f9;
}

.cyber-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}

/* Add to existing retro-cyber.css file */

/* Neural Network Visualization Styles */
.neural-network-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.neural-layers {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 350px;
}

.neural-layer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  position: relative;
}

.neural-node {
  width: 30px;
  height: 30px;
  position: relative;
}

.neural-node-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 255, 204, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
  animation: pulse 2s infinite alternate;
}

.neural-node-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00ffcc;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 1; }
}

.neural-visualization {
  position: relative;
  width: 100%;
  height: 400px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  background-color: rgba(0, 10, 20, 0.8);
  box-shadow: inset 0 0 30px rgba(0, 255, 204, 0.2);
  overflow: hidden;
}

/* Security Tab Styles */
.security-threats-container {
  position: relative;
  height: 200px;
  overflow-y: auto;
  background-color: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(255, 0, 68, 0.4);
}

.security-threat-item {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 0, 68, 0.2);
  transition: all 0.3s ease;
}

.security-threat-item:hover {
  background-color: rgba(255, 0, 68, 0.1);
}

/* Cyber Link */
.cyber-link {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.cyber-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var (--neon-cyan);
  transition: width 0.3s ease;
}

.cyber-link:hover {
  color: var(--neon-white);
}

.cyber-link:hover::before {
  width: 100%;
}

/* Accordion */
.accordion-item {
  background-color: var(--cyber-card-color);
  border: 1px solid var(--cyber-border);
}

.accordion-button {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--cyber-light);
  font-family: var(--font-display), sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 221, 255, 0.1);
  color: var(--neon-cyan);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--cyber-primary);
}

.accordion-body {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--cyber-light);
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--cyber-border);
}

/* Cyber Check List */
.cyber-check-list {
  list-style: none;
  padding: 0;
}

.cyber-check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--cyber-light);
  font-family: var(--font-mono), monospace;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cyber-check-list li::before {
  content: '>';
  position: absolute;
  left: 10px;
  top: 8px;
  color: var(--neon-cyan);
}

.cyber-check-list li:hover {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--neon-cyan);
}

/* Scroll to Top Button */
.cyber-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--cyber-primary);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
}

.cyber-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.cyber-scroll-top:hover {
  background-color: rgba(0, 221, 255, 0.2);
  box-shadow: 0 0 15px var(--shadow-cyan);
}

/* Loading Page Overlay */
.cyber-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 14, 23, 0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cyber-loading-logo {
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  color: var(--neon-cyan);
  font-size: 3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 10px var(--shadow-cyan);
}

.cyber-loading-message {
  font-family: var(--font-mono), monospace;
  color: var(--neon-green);
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.cyber-loading-progress {
  width: 300px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.cyber-loading-progress::after {
  content: '';
  position: absolute;
  left: -50%;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--neon-cyan);
  animation: loading-progress 2s linear infinite;
}

@keyframes loading-progress {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* EMERGENCY SHUTDOWN BUTTON */
.emergency-shutdown {
  position: relative;
  background-color: rgba(231, 76, 60, 0.2);
  border: 2px solid var(--cyber-danger);
  color: var(--neon-red);
  text-transform: uppercase;
  font-family: var(--font-mono), monospace;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  outline: none;
}

.emergency-shutdown:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 10px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 2px 2px 0 0;
}

.emergency-shutdown:hover {
  background-color: rgba(231, 76, 60, 0.4);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
  transform: translateY(-2px);
}

.emergency-shutdown:active {
  transform: translateY(1px);
}

/* Cyber font variations */
.font-cyber-mono {
  font-family: var(--font-mono), monospace;
}

.font-cyber-display {
  font-family: var(--font-display), sans-serif;
}

.font-cyber-pixel {
  font-family: var(--font-pixel), cursive;
}

/* Print styles */
@media print {
  body {
    background-color: white;
    color: black;
  }
  
  .cyber-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .cyber-sidebar,
  .cyber-header,
  .crt-effect,
  .scanlines {
    display: none;
  }
  
  .cyber-main {
    margin-left: 0;
    padding-top: 0;
  }
  
  .cyber-heading,
  .cyber-card-title,
  .cyber-stat-value,
  p, h1, h2, h3, h4, h5, h6 {
    color: black;
    text-shadow: none;
  }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators with optimized animations */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  will-change: opacity;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 15px #0f0;
  animation: pulse-glow 3s ease-in-out infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 3s ease-in-out infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5;
  animation: pulse-warning 2s ease-in-out infinite;
}

/* Optimized animations with fewer keyframes and smoother transitions */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pulse-outer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes pulse-warning {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
  will-change: transform;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s ease-out;
  will-change: opacity, color;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #f55,  0 0 10px #f55;
}

/* Stat value animations */
.cyber-value-pulse {
  animation: cyber-value-pulse 0.5s;
}

@keyframes cyber-value-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Scan line animation for section refreshes */
.section-refresh::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  animation: section-scan 1s ease-in-out;
}

@keyframes section-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Enhanced buttons */
.cyber-button {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 55, 55, 1) 0%, rgba(0, 35, 35, 1) 100%);
  border: 1px solid #0ff;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cyber-button:hover {
  background: linear-gradient(180deg, rgba(0, 65, 65, 1) 0%, rgba(0, 45, 45, 1) 100%);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 15px #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-button:active {
  background: linear-gradient(180deg, rgba(0, 40, 40, 1) 0%, rgba(0, 30, 30, 1) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* Improved card headings */
.cyber-card-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  color: #0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

.cyber-card-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

/* Value update animation */
.value-updated {
  animation: value-update-flash 1s;
}

@keyframes value-update-flash {
  0% { color: #0ff; text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
  100% { color: inherit; text-shadow: none; }
}

/* Data matrix effect */
.cyber-matrix-effect {
  position: relative;
  overflow: hidden;
}

.cyber-matrix-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, 
    rgba(0, 255, 0, 0.1) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(0, 255, 0, 0.1) 50%, 
    rgba(0, 255, 0, 0.1) 75%, 
    transparent 75%, 
    transparent);
  background-size: 4px 4px;
  animation: matrix-scan 0.5s linear;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes matrix-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Enhanced status indicators */
.cyber-status-indicator {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.cyber-status-indicator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.cyber-status-indicator.active {
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
  animation: pulse-glow 2s infinite;
}

.cyber-status-indicator.active::after {
  box-shadow: 0 0 15px 5px #0f0;
  animation: pulse-outer 2s infinite;
}

.cyber-status-indicator.inactive {
  background-color: #f55;
  box-shadow: 0 0 10px #f55, 0 0 15px #f55;
}

.cyber-status-indicator.warning {
  background-color: #ff5;
  box-shadow: 0 0 10px #ff5, 0 0 15px #ff5;
  animation: pulse-warning 1s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
  50% { box-shadow: 0 0 15px #0f0, 0 0 25px #0f0; }
  100% { box-shadow: 0 0 10px #0f0, 0 0 15px #0f0; }
}

@keyframes pulse-outer {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

@keyframes pulse-warning {
  0% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
  50% { opacity: 0.7; box-shadow: 0 0 7px #ff5, 0 0 10px #ff5; }
  100% { opacity: 1; box-shadow: 0 0 10px #ff5, 0 0 15px #ff5; }
}

/* Enhanced status text */
.cyber-status-enabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.cyber-status-disabled {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing