@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  background-color: #000;
  color: #ffffff;
  height: 100%;
  overflow: hidden;
}

.chaos-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.chaos-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* ← More visible background */
  z-index: 0;
}

.chaos-box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  height: 90vh;
  margin: 4% auto;
  padding: 2em;
  background: rgba(0, 0, 0, 0.6); /* ← More transparent overlay */
  border-radius: 10px;
  box-shadow: 0 0 30px crimson;
  overflow-y: auto;
}

.chaos-title {
  text-align: center;
  color: #ff0033;
  margin-bottom: 1em;
  font-size: 2em;
  letter-spacing: 1px;
}

.chaos-text {
  white-space: pre-wrap;
  font-size: 1.15em;
  line-height: 1.7em;
  color: #ffffff; /* ← Bright white text */
}
