body {
  background: none;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.background-gradient {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, #d3ede8 0%, #a7e0e0 50%, #e0c3fc 100%);
  width: 100vw;
  height: 100vh;
}

.container.glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 40px rgba(33, 117, 106, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 2rem;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 100%;
  margin: 7vh auto 0 auto;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: #d3ede8;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(33, 117, 106, 0.10);
}

.animated-logo {
  animation: float 2.8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.7rem;
  color: #21756a;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(33,117,106,0.08);
}

.badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.4em 1.2em;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #3a7c6b 0%, #a7e0e0 100%);
  border-radius: 999px;
  box-shadow: 0 0 16px 4px #a7e0e0, 0 2px 8px rgba(33,117,106,0.10);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(33,117,106,0.10);
  animation: glow 2.5s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 16px 4px #a7e0e0, 0 2px 8px rgba(33,117,106,0.10); }
  50% { box-shadow: 0 0 32px 8px #a7e0e0, 0 2px 16px rgba(33,117,106,0.18); }
}

.description {
  color: #2d3a3a;
  font-size: 1.13rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .container.glass-card {
    padding: 2rem 1rem 1.5rem 1rem;
    max-width: 95vw;
  }
  .logo {
    width: 90px;
    height: 90px;
  }
  h1 {
    font-size: 2rem;
  }
  .badge {
    font-size: 1rem;
  }
  .description {
    font-size: 1rem;
  }
} 