@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  overflow: hidden;
}

/* Glass container */
.glass-card {
  position: relative;
  width: 90%;
  max-width: 480px;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.glass-card h1 span {
  background: linear-gradient(90deg, #00e0ff, #00ffb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0 2rem;
}

.links a {
  display: inline-block;
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Moving background orbs */
.background::before, .background::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,163,0.5), transparent 70%);
  animation: float 10s infinite ease-in-out;
}

.background::after {
  background: radial-gradient(circle, rgba(0,224,255,0.5), transparent 70%);
  width: 300px;
  height: 300px;
  top: 60%;
  left: 60%;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
