.wl-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 60px 20px;
  text-align: center;
  border-radius: 36px;
  overflow: hidden;
  margin-top: 40px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  background: url("img/walle.png") center/cover no-repeat;
}

.wl-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127,0,255,0.5), rgba(0,255,246,0.5), rgba(225,0,255,0.5), rgba(0,255,136,0.5));
  background-size: 300% 300%;
  animation: bgGradient 8s ease infinite;
  z-index: 0;
  filter: blur(40px);
}

.wl-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 25, 0.5);
  z-index: 1;
}


.wl-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0 0 25px rgba(127, 0, 255, 0.5), 0 0 50px rgba(0, 255, 246, 0.2); */
  /* background: rgba(0, 0, 0, 0.5); */
}

.wl-section h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #00fff6;
  text-shadow: 0 0 10px #00fff6, 0 0 30px #6f00ff, 0 0 50px #00fff6;
  letter-spacing: 2px;
  font-weight: 700;
  animation: titlePulse 4s ease-in-out infinite;
}

.wl-section input {
  padding: 14px;
  font-size: 20px;
  border: 2px solid transparent;
  border-radius: 32px;
  outline: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 246, 0.4);
  font-family: "Roboto Slab", serif;
}

.wl-section input:focus {
  border-color: #00fff6;
  box-shadow: 0 0 20px #00fff6, 0 0 40px rgba(127, 0, 255, 0.5);
}

.wl-section button {
  padding: 12px 28px;
  font-size: 20px;
  background: linear-gradient(90deg, #7f00ff, #00fff6, #e100ff);
  background-size: 300% 300%;
  border: none;
  border-radius: 32px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(127, 0, 255, 0.6);
  animation: gradientMove 5s ease infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Roboto Slab", serif;
}

.wl-section button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(127, 0, 255, 0.9);
}

#wallet-result {
  margin-top: 25px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 255, 246, 0.5);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bgGradient {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes titlePulse {
  0%, 100% { text-shadow: 0 0 10px #00fff6, 0 0 30px #6f00ff; }
  50% { text-shadow: 0 0 20px #00fff6, 0 0 50px #6f00ff; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
