body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  overflow: hidden;
  color: white;
  font-family: sans-serif;
  position: relative;
}

/* Canvas de ruído para efeito TV fora do ar */
#noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.title {
  z-index: 1;
  font-size: 3rem;
  text-align: center;
}
