* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.container {
  padding: 30px;
}

.logo {
  width: 180px;
  max-width: 60vw;
  animation: spin 12s linear infinite;
  margin-bottom: 30px;
}

.coming {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  animation: pulse 1.8s ease-in-out infinite;
  cursor: default;
}

.tagline {
  margin-top: 15px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.75;
  letter-spacing: 1px;
}

/* Logo Spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Coming Soon Pulse */
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1);   opacity: 0.6; }
}

/* Hover enhancement */
.coming:hover {
  animation: none;
  transform: scale(1.15);
  color: #ffd400;
  transition: 0.3s ease;
}

/* Mobile spacing tweaks */
@media (max-width: 600px) {
  .logo {
    width: 140px;
  }
}