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

html, body {
  height: 100%;
}

body {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.bg-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.12));
  background-color: #4a94eb;
  pointer-events: none; z-index: 0;
}

.center-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.logo {
  width: clamp(280px, 40vw, 640px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
  animation: fadeIn 700ms ease-out both;
}

.coming-soon {
  margin-top: 16px;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeInUp 900ms ease-out 200ms forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

img.logo {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
