*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  height:100vh;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
  background:#0d0a1a;
  color:#fff;
}

/* START BUTTON */
.start{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background:radial-gradient(circle,#70463c,#0d0a1a);
  z-index:10;
}
.start button{
  padding:22px 55px;
  border:none;
  border-radius:60px;
  font-size:22px;
  background:linear-gradient(135deg,#d4a373,#fce4c4);
  color:#3a1e1e;
  box-shadow:0 0 50px rgba(255,220,180,.9);
  cursor:pointer;
  transition:0.3s ease;
}
.start button:hover{
  transform:scale(1.08);
}

/* SCENE */
.scene{position:relative;width:100%;height:100%;}
.hidden{display:none}

/* BACKGROUND GRADIENT */
.bg{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,#1b0f0f,#0d0a1a,#000);
  animation:backgroundPulse 12s infinite alternate;
}
@keyframes backgroundPulse{
  0%{filter:brightness(1);}
  50%{filter:brightness(1.15);}
  100%{filter:brightness(1);}
}

/* STARS */
.stars{
  position:absolute;
  inset:0;
  background:transparent;
  z-index:1;
}
.stars::after{
  content:"";
  position:absolute;
  width:2px; height:2px;
  background:white;
  box-shadow:
    10vw 20vh white,
    30vw 10vh white,
    50vw 40vh white,
    70vw 60vh white,
    90vw 30vh white,
    20vw 80vh white,
    60vw 20vh white,
    80vw 90vh white,
    40vw 50vh white,
    10vw 70vh white;
  animation:twinkle 3s infinite alternate;
}
@keyframes twinkle{
  0%{opacity:0.3;}
  50%{opacity:1;}
  100%{opacity:0.3;}
}

.overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle,rgba(255,255,255,.12),rgba(0,0,0,.85));
}

/* PAGES */
.page{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px;
  opacity:0;
  transform:scale(1.05) translateY(20px);
  transition:2.5s ease;
  z-index:3;
}
.page.show{
  opacity:1;
  transform:scale(1) translateY(0);
}

/* Luxury headings */
.luxury-heading{
  font-size:48px;
  letter-spacing:2px;
  font-family:'Playfair Display',serif;
  background:linear-gradient(135deg,#fff,#fce4c4,#d4a373);
  -webkit-background-clip:text;
  color:transparent;
  text-shadow:0 4px 20px rgba(255,220,180,0.9);
  animation:floatText 3s ease-in-out infinite alternate;
}

.luxury-last-heading{
  font-size:52px;
  background:linear-gradient(90deg,#fff,#fce4c4,#d4a373);
  -webkit-background-clip:text;
  color:transparent;
  text-shadow:0 5px 25px rgba(0,0,0,0.5);
}

.luxury-para{
  margin-top:20px;
  font-size:20px;
  line-height:1.8;
  color:#fdf0e0;
  text-shadow:0 2px 15px rgba(0,0,0,0.3);
  animation:floatText 4s ease-in-out infinite alternate;
}

/* FLOATING TEXT ANIMATION */
@keyframes floatText{
  0%{transform:translateY(0);}
  50%{transform:translateY(-5px);}
  100%{transform:translateY(0);}
}

/* TEDDY */
.teddy{
  font-size:96px;
  margin-bottom:20px;
  text-shadow:0 5px 25px rgba(255,220,180,0.9);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.25)}
}

/* SOFT TEDDY RAIN */
.melt{
  position:absolute;
  top:-60px;
  font-size:38px;
  animation:melt 8s cubic-bezier(.25,.1,.25,1) forwards;
}
@keyframes melt{
  to{
    transform:translateY(120vh) rotate(360deg);
    opacity:0;
  }
}

/* FINAL BLAST */
.blast{
  position:absolute;
  left:50%;
  top:50%;
  font-size:28px;
  animation:blast 4s ease-out forwards;
}
@keyframes blast{
  to{
    transform:translate(var(--x),var(--y)) scale(0.2) rotate(360deg);
    opacity:0;
  }
}

/* MOBILE */
@media(max-width:600px){
  .luxury-heading{font-size:36px}
  .luxury-last-heading{font-size:36px}
  .teddy{font-size:64px}
  .luxury-para{font-size:16px}
}
