@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Space+Grotesk:wght@400;700&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0f;
  background-image: 
    radial-gradient(at 27% 37%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 97% 21%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 52% 99%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 10% 29%, rgba(168, 85, 247, 0.15) 0px, transparent 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #e4e4e7;
}

.container {
  background: rgba(24, 24, 27, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 50px;
  max-width: 600px;
  width: 100%;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  text-align: center;

  /* For some reason ts breaks page loading time, just dont use for now */
  /* animation: fadeIn 0.6s ease-out; */
}

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

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.3));
}

.description {
  font-size: 1.125rem;
  font-weight: 300;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
}

button {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  color: white;
  border: none;
  padding: 18px 60px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

button:hover::before {
  left: 100%;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 25px rgba(139, 92, 246, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

button:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .container {
    padding: 40px 30px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  button {
    padding: 16px 50px;
    font-size: 1.125rem;
  }
}
