body {
  margin: 0;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  background: black;
  color: white;
  text-align: center;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.page-text {
  position: absolute;
  top: 30%;
  width: 100%;
  font-size: 2rem;
  letter-spacing: 0.2em;
  animation: fadeIn 4s ease 1s forwards;
  opacity: 0;
}

#wallet-container {
  position: absolute;
  bottom: 25%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

input {
  padding: 1rem;
  width: 60%;
  font-size: 1.1rem;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

button {
  padding: 1rem 2rem;
  background-color: #9333ea;
  border: none;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 5px;
  cursor: pointer;
}

.wallet-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
}

.wallet-shown {
  opacity: 1;
  pointer-events: auto;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
