body {
  min-height: 100vh;
  background: linear-gradient(135deg, #5b2d8b, #7a3db8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 1rem;
}
@media (min-width: 768px) {
    body {
        padding: 0;
      }
}

.coming-soon-card {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.brand {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.subtitle {
  color: #e2d6f5;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: #caa9ff;
  border-radius: 2px;
  margin: 1.5rem auto;
}

.btn-purple {
  background-color: #9b6cff;
  border: none;
}

.btn-purple:hover {
  background-color: #b08cff;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.social-icons a {
  color: #e2d6f5;
  font-size: 1.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover {
  color: #caa9ff;
  transform: translateY(-3px);
}
.brand-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  .brand-logo {
    max-width: 380px;
  }
}
