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

/* Body & Font */
body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  height: 100vh;
  background: linear-gradient(135deg, #f8f9fa, #e6eefc);
  overflow: hidden;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animated Background Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.shape-1 { width: 300px; height: 300px; background: #ff6b6b; top: -100px; left: -100px; }
.shape-2 { width: 400px; height: 400px; background: #6bafff; bottom: -150px; right: -150px; }
.shape-3 { width: 200px; height: 200px; background: #ffd56b; top: 200px; right: -100px; }
.shape-4 { width: 350px; height: 350px; background: #6bff9f; bottom: 100px; left: -150px; }

/* Container */
.container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Glass Card */
.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  border-radius: 30px;
  padding: 60px 50px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 25px 90px rgba(0,0,0,0.15);
}

/* Logo */
.logo {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0;
}

.logo span {
  color: #ff6b6b;
}

/* Title */
.title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  opacity: 0;
}

/* Subtitle */
.subtitle {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0;
}

/* Divider */
.divider {
  width: 70px;
  height: 3px;
  background: #ff6b6b;
  margin: 0 auto 25px auto;
  border-radius: 2px;
  opacity: 0;
}

/* Note */
.note {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
}

/* CTA Button */
.cta a {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, #ff6b6b, #6bafff);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #666;
  z-index: 10;
  opacity: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .card { padding: 40px 25px; }
  .logo { font-size: 36px; }
  .title { font-size: 22px; }
}
