:root{
  --bg1: #e2a3f9;
  --bg2: #eea9e8;
  --accent1: #ffb6d5;
  --accent2: #ffd77a;
}

*{box-sizing:border-box}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(160deg, var(--bg1) 0%, var(--bg2) 100%);
  color: #3b2b3b;
  /* prevent the page from scrolling - content is centered inside the viewport */
  overflow: hidden;
}

/* Use the body as a full-viewport flex container so content is always centered
   on mobile, tablet and large desktop screens without relying on large paddings */
body {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: transparent; /* gradient comes from html/bg */
  color: #3b2b3b;
}

/* Responsive type that scales across small and very large screens */
h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0 0 12px 0;
}

p {
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  margin: 0;
}

.container{
  /* keep the container centered but avoid extra vertical size that causes scroll */
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  gap:12px;
  padding: 24px; /* small padding so content doesn't touch edges on tiny screens */
  max-width: 1100px;
  width: 100%;
}

.coming-soon{
  font-size:4rem;
  letter-spacing:2px;
  margin:0;
  color:#5b2b4a;
}

.message{
  margin:0;
  color:#6f4a59;
  font-size:1.25rem;
}

/* Particle styles */
.dust-particle{
  position:fixed;
  left:0;
  top:0;
  pointer-events:none;
  width: 80px;
  height:80px;
  transform-origin:center center;
  will-change:transform, opacity;
  animation-name:dust-fall;
  animation-timing-function:cubic-bezier(.2,.8,.2,1);
  animation-fill-mode:forwards;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

/* The SVG inside scales to element size */
.dust-particle svg{
  display:block;
  width:100%;
  height:100%;
}

/* animation uses CSS variables set by JS:
   --dx, --dy : translation targets (e.g. "30px", "140px")
   --rot : rotation at end (e.g. "180deg")
*/
@keyframes dust-fall {
  to {
    transform: translate(var(--dx, 0px), var(--dy, 120px)) rotate(var(--rot, 90deg));
    opacity: 0;
    filter: blur(0.6px);
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dust-particle { animation: none !important; opacity:0 !important; }
}