html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #2b2d42, #8d99ae);
  color: #fff;
}

.container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  text-align: center;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
}

.countdown {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.wallet-button,
.claim-form button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #ef233c;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s ease-in-out;
}

.wallet-button:hover,
.claim-form button:hover {
  background: #d90429;
}

.claim-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.claim-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.status {
  margin-top: 20px;
  min-height: 1em;
}
