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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.content {
  max-width: 64rem;
  width: 100%;
  text-align: center;
}

/* Logo - Much Bigger */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem; /* Updated margin-bottom */
}

.logo {
  width: auto;
  height: 12rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

/* Hero Text */
.hero-text {
  margin-bottom: 2rem;
}

.coming-soon-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}

/* Newsletter Card */
.newsletter-card {
  max-width: 32rem;
  margin: 0 auto 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
}

.newsletter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.newsletter-description {
  color: #4b5563;
  margin-bottom: 1rem;
}

.form-container {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.email-input {
  flex: 1;
  height: 3rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0 0.75rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-input:focus {
  border-color: #a855f7;
}

.email-input:disabled {
  background-color: #f9fafb;
  cursor: not-allowed;
}

.subscribe-btn {
  padding: 0 1.5rem;
  height: 3rem;
  background: linear-gradient(90deg, #ec4899, #7c3aed);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.subscribe-btn:hover:not(:disabled) {
  background: linear-gradient(90deg, #db2777, #6d28d9);
}

.subscribe-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
  background-color: #f472b6;
}

.dot-2 {
  background-color: #22d3ee;
}

.status-text {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Footer */
.footer {
  padding-top: 1.5rem;
}

.footer p {
  color: #6b7280;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .logo {
    height: 16rem;
  }

  .coming-soon-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    height: 20rem;
  }

  .coming-soon-title {
    font-size: 2rem;
  }
}

@media (min-width: 1280px) {
  .logo {
    height: 24rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0.5rem;
  }

  .logo {
    height: 10rem;
  }

  .coming-soon-title {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .card-content {
    padding: 1rem;
  }

  .form-container {
    flex-direction: column;
  }

  .subscribe-btn {
    width: 100%;
  }
}
