*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

#tplus-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  font-family: monospace;
  display: flex;
  justify-content: center;
  padding-top: 10vh;
  color: #ff0000;
  overflow: auto;
}

#tplus-terminal {
  width: 100%;
  max-width: 800px;
  font-size: 16px;
  padding: 20px;
}

#loading-text {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
}

#dots {
  display: inline;
}

#beta-text {
  color: #ffff00;
  margin-top: 20px;
  font-size: 16px;
}

#home-btn {
  display: inline-block;
  margin-top: 25px;
  color: #ff0000;
  font-family: monospace;
  font-size: 16px;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

#home-btn:hover {
  color: #ffff00;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
