/* Custom Noir Theme Styles */
html, body {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Vignette & Venetian Blinds Desk Shadow */
.vignette-bg {
  background: radial-gradient(circle at 50% 30%, rgba(20, 17, 21, 0.4) 0%, rgba(10, 8, 11, 0.95) 85%);
}

/* Custom Scrollbar for Sleek Dossier Feel */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #141115;
}
::-webkit-scrollbar-thumb {
  background: #2d2531;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C83E4D;
}

/* Animations */
@keyframes pulseSubtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.animate-subtle {
  animation: pulseSubtle 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Active Chip Press */
.chip-active {
  background-color: #E0A93B !important;
  color: #0e0b0f !important;
  border-color: #f5bd4f !important;
}

/* Red Stamp Glow */
.stamp-border {
  border-style: double;
  border-width: 4px;
}