/* Maintenance Page Styles */
:root {
  --purple: #1A002E;
  --teal: #2DD4BF;
  --teal-light: #5EEAD4;
  --white: #FFFFFF;
  --black: #000000;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Arial', sans-serif;
  background-color: var(--purple);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    radial-gradient(circle at 25% 60%, rgba(46, 16, 83, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(29, 78, 216, 0.6) 0%, transparent 50%);
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--teal);
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
  font-weight: 800;
}

p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* NFT-inspired decorative elements */
.nft-shape {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--teal);
  top: -100px;
  left: -100px;
  filter: blur(60px);
}

.shape-2 {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background: var(--teal-light);
  bottom: -150px;
  right: -150px;
  filter: blur(80px);
  transform: rotate(45deg);
}

/* Animated dots */
.dots {
  display: inline-block;
  margin-left: 5px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal);
  margin: 0 2px;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% { 
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
}