/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY - FUNDO SÓLIDO */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: #000000;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTAINER PRINCIPAL */
.container {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TÍTULO */
.container h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: 1px;
}

/* STATUS / SUBTEXTO */
.status {
  margin-top: 8px;
  font-size: 14px;
  color: #aaaaaa;
}

/* CANVAS / GRÁFICO */
canvas {
  position: absolute;
  inset: 0;
  image-rendering: auto;

  width: 100% !important;
  height: 100% !important;

  background: #0b0b0b;
}
