* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0d0015 0%, #1a0028 25%, #0d0015 50%, #000000 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
  position: relative;
}

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

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 30%, rgba(75, 0, 130, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(50, 0, 80, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  text-align: center;
  z-index: 1;
  padding: 40px;
}

h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  font-family: 'Arimo', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  background: linear-gradient(135deg, #ac89c9 0%, #e6d1f9 50%, #c6a9f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
      filter: drop-shadow(0 0 20px rgba(109, 40, 217, 0.4));
  }
  to {
      filter: drop-shadow(0 0 40px rgba(109, 40, 217, 0.8));
  }
}

.subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #9333ea;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .container {
      padding: 20px;
  }
  
  h1 {
      margin-bottom: 20px;
  }
}