body::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg, 
    rgba(255, 0, 0, 0.06), 
    rgba(0, 255, 0, 0.02), 
    rgba(0, 0, 255, 0.06)
  );
  z-index: 999;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
}

.app-shell {
  text-shadow: 0 0 4px rgba(255, 182, 66, 0.6);
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0% { opacity: 0.98; }
  50% { opacity: 0.95; }
  100% { opacity: 0.99; }
}

.panel, .task, .stat {
  border-radius: 4px;
  border: 2px solid var(--border);
  background: rgba(255, 182, 66, 0.05);
}

button {
  text-transform: uppercase;
  letter-spacing: 1px;
}
