/* Global Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
}


/* ---- Coming Soon Card ---- */
.coming-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 120px); /* adjust for header/footer */
  text-align: center;
  color: #444;
  animation: fadeInUp 0.6s ease-out both;
}

.coming-soon-card i {
  font-size: 4rem;
  background: linear-gradient(135deg, #FF6B35 0%, #D32F2F 50%, #1976D2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.coming-soon-card h2 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.coming-soon-card p {
  font-size: 1.1rem;
  max-width: 320px;
  line-height: 1.4;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

