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

body {
  background: #fbf9e4;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.container {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.logo {
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
}

h1 {
  font-size: 72px;
  line-height: 1;
  color: #4a1f0f;
  margin-bottom: 24px;
  font-weight: 800;
}

.subtitle {
  font-size: 24px;
  color: rgba(74, 31, 15, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  background: #e6d600;
  color: #4a1f0f;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 18px 34px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #4a1f0f;
  color: white;
}

.primary-btn:hover {
  transform: translateY(-4px);
}

.secondary-btn {
  border: 2px solid #4a1f0f;
  color: #4a1f0f;
}

.secondary-btn:hover {
  background: #4a1f0f;
  color: white;
}

footer {
  margin-top: 60px;
  color: rgba(74, 31, 15, 0.7);
  font-size: 15px;
  font-weight: 500;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #4a1f0f;
  color: #fbf9e4;
  border-radius: 16px;
  padding: 14px 20px;
  min-width: 76px;
  box-shadow: 0 8px 24px rgba(74, 31, 15, 0.15);
}

.countdown-item .count {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.cd-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 36px;
  font-weight: 800;
  color: #4a1f0f;
  opacity: 0.4;
  margin-bottom: 18px;
}

/* Signup form */
.signup-form {
  margin-bottom: 32px;
}

.form-tagline {
  font-size: 16px;
  color: rgba(74, 31, 15, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}

.form-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-row input[type="email"] {
  padding: 16px 22px;
  border-radius: 14px;
  border: 2px solid rgba(74, 31, 15, 0.25);
  background: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4a1f0f;
  outline: none;
  width: 280px;
  transition: border-color 0.2s;
}

.form-row input[type="email"]:focus {
  border-color: #4a1f0f;
}

.form-row button {
  padding: 16px 28px;
  border-radius: 14px;
  border: none;
  background: #e6d600;
  color: #4a1f0f;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(230, 214, 0, 0.35);
}

.form-row button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(230, 214, 0, 0.45);
}

.form-success {
  font-size: 17px;
  font-weight: 600;
  color: #4a1f0f;
  padding: 14px;
  background: rgba(230, 214, 0, 0.25);
  border-radius: 12px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .countdown-item {
    min-width: 60px;
    padding: 10px 14px;
  }

  .countdown-item .count {
    font-size: 28px;
  }

  .form-row input[type="email"] {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    align-items: stretch;
    padding: 0 10px;
  }

  .form-row button {
    width: 100%;
  }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 6s infinite alternate ease-in-out;
}

.blob1 {
  width: 300px;
  height: 300px;
  background: #ff7503;
  top: -100px;
  left: -80px;
}

.blob2 {
  width: 350px;
  height: 350px;
  background: #e6d600;
  bottom: -120px;
  right: -80px;
}

.blob3 {
  width: 180px;
  height: 180px;
  background: #bf1d19;
  top: 20%;
  right: 10%;
}

@keyframes float {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(30px);
  }
}


@media (max-width: 768px) {

  h1 {
    font-size: 44px;
  }

  .subtitle {
    font-size: 18px;
  }

  .logo {
    max-width: 100%;
  }

}