



body {
  background: black;
  color: #fff;
  font-family: monospace;
  text-align: center;
  overflow: hidden;
}

.game {
  max-width: 420px;
  margin: auto;
  padding-top: 40px;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 48px;
  text-shadow: 0 0 15px red;
}

.subtitle {
  color: #aaa;
  margin-bottom: 20px;
}

.wallet {
  margin-bottom: 20px;
}

.stats {
  margin-bottom: 20px;
  font-size: 18px;
}

button {
  width: 100%;
  background: #111;
  color: white;
  border: 1px solid red;
  padding: 15px;
  margin: 8px 0;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: red;
  transform: scale(1.02);
}

.claim button {
  margin-top: 20px;
  background: darkred;
}

/* ===== GLITCH TEXT ===== */
.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: red;
  animation: glitch1 1s infinite;
}

.glitch-text::after {
  color: cyan;
  animation: glitch2 1s infinite;
}

@keyframes glitch1 {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitch2 {
  0% { transform: translate(0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(-2px, 2px); }
  100% { transform: translate(0); }
}

/* ===== SCREEN GLITCH FLASH ===== */
.glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,0,0,0.05);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}