* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #0078e7, #00c6ff);
  color:white;
  display:flex; align-items:center; justify-content:center;
  min-height:100vh; padding:20px;
}
.hero {
  text-align:center; max-width:500px; width:100%;
}
.content {
  background: rgba(255,255,255,0.1);
  border-radius:20px; padding:40px 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1.5s ease forwards;
  opacity:0; transform:translateY(40px);
}
.cta-button {
  display:inline-block; margin-top:25px;
  padding:15px 30px; background-color:#fff;
  color:#0078e7; text-decoration:none;
  font-weight:600; font-size:18px;
  border-radius:50px; transition: all 0.3s ease;
}
.cta-button:hover { background-color:#005bb5; color:white; }
@keyframes fadeInUp {
  to { opacity:1; transform:translateY(0); }
}
