/* Gradient background animation */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Body styles */
body {
  background: linear-gradient(-45deg, #ef476f, #ffd166, #06d6a0, #118ab2);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Container in the center with black background */
.container {
  width: 100%;
  padding: 25px;
  background: #0d1117;
  backdrop-filter: blur(5px);
}

.logo {
  margin-top: 15px;
}

/* Title */
h1 {
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: -10px;
  color: #fff
}

h1, h2, h3 {
  font-weight: 600;
}

button {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* Subtitle */
.subtitle {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 20px;
  padding: 10px 30px;
}

/* Connect Button */
button {
  background: linear-gradient(90deg, #0072ff, #00ffc8);
  color: #0d1117;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* Button hover effect */
button:hover {
  background: linear-gradient(90deg, #00ffc8, #0072ff);
  box-shadow: 0px 0px 20px rgba(0, 255, 200, 0.6);
}

/* Wallet Address */
#walletAddress {
  margin-top: 20px;
  font-size: 14px;
  color: #00ffc8;
  word-wrap: break-word;
}
