
body {
  margin: 0;
  background: black;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  height: 100vh;
  overflow: hidden;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

#terminalBox {
  width: 100%;
  max-width: 800px;
  height: 60vh;
  overflow-y: auto;
  border: 1px solid #00FF00;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 20px #00FF00;
}

pre {
  white-space: pre-wrap;
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 0 0 5px #00FF00;
}

.insult-line {
  cursor: pointer;
}
.insult-line:hover {
  background-color: rgba(0, 255, 0, 0.1);
}

button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  background-color: #00FF00;
  color: black;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #0f0;
}

.timestamp {
  font-size: 0.8rem;
  color: rgba(0, 255, 0, 0.5);
  margin-right: 0.5rem;
}

.insult-line {
  padding: 0.25rem 0;
  border-top: 1px solid rgba(0, 255, 0, 0.1);
  cursor: pointer;
}
.insult-line:first-child {
  border-top: none;
}

#muteButton {
  margin-top: 1rem;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  background-color: #222;
  color: #00FF00;
  border: 1px solid #00FF00;
  cursor: pointer;
}
#muteButton:hover {
  background-color: #0f0;
  color: black;
}
