@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

html,
body {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {

    margin: 0;
    overflow: hidden;
    background-color: #050505;
}

canvas {
    display: block;
}

#top-banner,
#bottom-banner {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 10;

    background: rgba(10, 15, 30, 0.5);
}

#top-banner {
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

#bottom-banner {
    justify-content: space-around;

    bottom: 0;
    left: 0;
    padding-bottom: 10px;

    color: rgba(0, 255, 255, 0.8);
    font-size: clamp(12px, 1.2vw, 25px);

}

.info-item {
    padding: 6px 12px;
    border: 1px solid;
}

#banner-img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    max-height: 200px;
    opacity: 0.5;
}

#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #00ff88;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 255, 136, 0.2);
  border-top: 5px solid #00ff88;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

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

#loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}