html, body {
  height: 100%;
  margin: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  max-width: 90vmin;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: transform .3s ease;
}

.logo:hover {
  transform: scale(1.03);
}
.connect-btn {
  background-color: #ff9900;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 24px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background-color: #ffaa33;
  transform: scale(1.05);
}

.wallet-address {
  color: white;
  margin-top: 12px;
  font-size: 14px;
  font-family: monospace;
  word-break: break-all;
}
