/* matrix.css */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #1E1E1E;
}

/* Overlay pour adoucir les caractères aux abords */
#matrixOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Un dégradé radial qui reste transparent au centre et s'assombrit vers les bords */
  background: radial-gradient(ellipse at center, rgba(30,30,30,0) 50%, rgba(30,30,30,0.5) 100%);
  z-index: -0.5;
}

/* Appliquer à tous les cadres qui recouvrent le canvas */
.container, .main-content, .objective-bar {
  background-color: rgba(44, 44, 44, 0.85);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7);
}