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

body {
  background: linear-gradient(135deg, #fff5f8, #f7d9e3);
  color: #4a4a4a;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  animation: fadeIn 2s ease;
}

h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  color: #d63384;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.coming-soon {
  font-size: 1.4rem;
  font-weight: 500;
  color: #e83e8c;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

