/* Custom Font Definition */
@font-face {
  font-family: 'Maple Mono';
  src: url('/fonts/MapleMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Maple Mono';
  src: url('/fonts/MapleMono-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Background Optimization - Dark Overlay */
#web_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 40% opacity black */
  z-index: -1;
}
