* {
  font-family: "Funnel Display", serif;
  font-optical-sizing: auto;
}

body {
  background-color: #1a202c;
  color: #e2e8f0;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, #1a202c 0%, #2d3748 25%, #1a202c 50%, #2d3748 75%, #1a202c 100%);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  z-index: -1;
}

.particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  border-radius: 50%;
  animation: float 8s infinite;
  z-index: -1;
}

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

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

.bg-card {
  border: 1px solid rgba(255, 245, 238, 0.1);
  background: rgba(26, 32, 43, 0.8);
  backdrop-filter: blur(8px);
}

.bg-card:hover {
  background: rgba(26, 32, 43, 0.9);
  border: 1px solid rgba(255, 245, 238, 0.2);
}

.btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: scale(1.01);
}

.transition-all {
  transition: all 0.3s ease-in-out;
}

/* Connect Wallet */
.centered-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 60%;
}

.centered-header h1 {
  margin-bottom: 2rem;
}
