body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Share Tech Mono', monospace;
}

.contract-text {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  animation: flicker 1.5s infinite alternate;
}

.buttons {
  display: flex;
  gap: 20px;
}

.accept-btn, .decline-btn {
  background: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Share Tech Mono', monospace;
  transition: background 0.3s, color 0.3s;
}

.accept-btn:hover {
  background: white;
  color: black;
}

.decline-btn:hover {
  background: red;
  color: black;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}
}