* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

body {
  background: radial-gradient(circle, #0a0a0a, #000);
  color: #00ffcc;
  overflow: hidden;
  transition: 0.3s ease;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
  text-align: center;
  margin-top: 120px;
}

.glitch {
  position: relative;
  font-size: 48px;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  opacity: 0.6;
}

.glitch::before { color: red; }
.glitch::after { color: blue; }

.subtitle {
  margin-top: 10px;
  opacity: 0.7;
}

.buttons {
  margin-top: 30px;
}

button {
  margin: 10px;
  padding: 10px 20px;
  border: 1px solid #00ffcc;
  background: transparent;
  color: #00ffcc;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #00ffcc;
  color: black;
}

.chaos-bar {
  margin-top: 30px;
}

#systemMessage {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: red;
  font-size: 14px;
}

.hint {
  opacity: 0.05;
  margin-top: 40px;
}