/* Global reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 100vh;        /* full height */
  overflow: hidden;     /* stop scrolling */
  text-align: center;

  position: relative;   /* needed for footer placement */
}

/* particle background stays behind everything */
body::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  top: -50%;
  left: -50%;
  opacity: 0.18;
  animation: floatParticles 15s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* footer stays at the bottom properly */
footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
  margin: 0;
}

@keyframes floatParticles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100px);
  }
}

.logo img {
  width: min(400px, 80vw);
  height: auto;
  margin-bottom: 20px;
}

.tagline {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.coming_soon {
  font-size: 28px;
  margin-bottom: 40px;
}
/* ---------- MOBILE ADJUSTMENTS ---------- */
@media (max-width: 600px) {
  .tagline {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .coming_soon {
    font-size: 20px;
    margin-bottom: 24px;
  }

  footer {
    font-size: 12px;
    bottom: 10px;
    line-height: 1.4;
  }
}