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

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background-color: #0a2f2c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: -1;
}

.glass-card {
  max-width: 860px;
  width: 90%;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 2.5rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  padding: 2rem 2rem 2.5rem;
  backdrop-filter: blur(4px);
  animation: fadeSlideUp 0.8s ease forwards;
}

@media (max-width: 650px) {
  .glass-card { padding: 1.8rem 1.5rem 2rem; width: 92%; border-radius: 2rem; }
}

.logo-wrapper { text-align: center; margin-bottom: 1.8rem; }
.logo-img { max-height: 85px; width: auto; }
.logo-text { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, #1E88E5, #004d40); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-icon { font-size: 3.2rem; color: #1E88E5; }

.org-title { font-size: 2.8rem; font-weight: 800; text-align: center; letter-spacing: -0.02em; color: #1a2e2b; margin-bottom: 0.5rem; }
.tagline { text-align: center; font-size: 1.2rem; font-weight: 500; color: #2c6e5c; margin-bottom: 1rem; }
.description { text-align: center; color: #2c3e2f; font-size: 1rem; line-height: 1.5; max-width: 550px; margin: 0 auto 1.8rem; }

.countdown-container { background: #f0f7f4; border-radius: 2rem; padding: 1.2rem; margin: 1.5rem 0; text-align: center; }
.timer { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.time-block { background: white; border-radius: 1.5rem; padding: 0.7rem 1rem; min-width: 85px; box-shadow: 0 5px 12px rgba(0,0,0,0.05); }
.time-number { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.time-label { font-size: 0.75rem; text-transform: uppercase; font-weight: 600; color: #4b6b62; }
.launch-message { font-size: 1.2rem; font-weight: 600; color: #0f6b58; }

.newsletter-area { margin: 2rem 0 1.5rem; background: #ffffffcc; border-radius: 2rem; }
.form-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.email-input { flex: 2; min-width: 200px; padding: 0.9rem 1.2rem; border: 1px solid #cbdcd6; border-radius: 60px; font-family: 'Inter', sans-serif; background: #fff; }
.email-input:focus { border-color: #1E88E5; outline: none; box-shadow: 0 0 0 3px rgba(30,136,229,0.2); }
.subscribe-btn { background: #1E88E5; border: none; padding: 0 1.8rem; border-radius: 60px; color: white; font-weight: 600; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.subscribe-btn:hover { transform: scale(0.97); opacity: 0.9; }
.form-message { text-align: center; margin-top: 0.7rem; font-size: 0.8rem; font-weight: 500; }

.social-links { display: flex; justify-content: center; gap: 1.8rem; margin: 1.8rem 0 1rem; flex-wrap: wrap; }
.social-link { color: #3c6e64; font-size: 1.7rem; transition: 0.2s; }
.social-link:hover { transform: translateY(-3px); }
.contact-email { text-align: center; margin-top: 0.6rem; font-size: 0.9rem; }
.contact-email a { text-decoration: none; font-weight: 500; border-bottom: 1px dashed; }
.footer-note { text-align: center; font-size: 0.75rem; color: #6b8a7e; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid #d0e2da; }

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

button:disabled { opacity: 0.6; cursor: not-allowed; }
