:root {
  --primary: #4a6bff;
  --secondary: #ff6b6b;
  --dark: #2b2d42;
  --light: #f8f9fa;
  --success: #28a745;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

.launch-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(74, 107, 255, 0.3);
  animation: pulse 2s infinite;
}

.launch-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.launch-subheading {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 300;
}

.countdown-container {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-box {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-5px);
}

.countdown-box span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.countdown-box small {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.launch-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 107, 255, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(74, 107, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 107, 255, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .countdown-box {
    min-width: 70px;
    padding: 1rem 0.5rem;
  }
  
  .countdown-box span {
    font-size: 1.5rem;
  }
  
  .notify-form {
    flex-direction: column;
    align-items: center;
  }
  
  .notify-form input,
  .notify-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .launch-container {
    padding: 1.5rem;
  }
  
  .countdown-box {
    min-width: 60px;
    padding: 0.8rem 0.3rem;
  }
  
  .countdown-box span {
    font-size: 1.2rem;
  }
  
  .countdown-box small {
    font-size: 0.7rem;
  }


.launch-description {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

}
