body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #0a0010, #000);
  color: #00ffff;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: left;
  max-width: 800px;
  width: 90%;
  padding: 2em;
  border: 2px solid #ff66cc;
  border-radius: 20px;
  box-shadow:
    0 0 8px #ff66cc,
    0 0 16px #00ffff88,
    0 0 32px #55008866 inset;
  background: rgba(10, 0, 20, 0.7);
}

h1 {
  font-size: 2em;
  color: #ff99ff;
  text-shadow:
    0 0 4px #ff66cc,
    0 0 10px #00ffff;
  text-align: center;
}

.terminal {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1em;
  border-radius: 10px;
  border: 1px solid #333;
  max-height: 300px;
  overflow-y: auto;
  color: #ccccff;
  font-size: 1em;
  margin-top: 1.5em;
}

.button-row {
  margin-top: 2em;
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  background: transparent;
  border: 2px solid #00ffff;
  color: #ffccff;
  padding: 0.75em 1.5em;
  font-size: 1em;
  border-radius: 10px;
  font-family: 'Share Tech Mono', monospace;
  cursor: pointer;
  box-shadow:
    0 0 6px #00ffff66,
    inset 0 0 4px #ff66cc44;
  transition: all 0.2s ease;
}

button:hover {
  background: #00ffff33;
  color: white;
  transform: scale(1.05);
  box-shadow:
    0 0 10px #ff66cc,
    inset 0 0 8px #ff99ff;
}

.glitch {
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
