/* ================= BODY & BACKGROUND ================= */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  background: linear-gradient(135deg, #ff9ec0, #fcd1d1, #ffc1ff);
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
  color: white;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= TITLE ================= */
.title-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.title {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ff004c;
  text-shadow: 0 0 20px #ff004c, 0 0 40px #ff69b4, 0 0 60px #ffb6c1;
  opacity: 0;
  transform: scale(0.8);
  animation: titleReveal 2.5s ease forwards;
}

@keyframes titleReveal {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.subtitle {
  font-size: 24px;
  margin-top: 20px;
  color: #fff0f5;
  opacity: 0;
  animation: subtitleReveal 3s ease forwards;
  animation-delay: 2.5s;
}

@keyframes subtitleReveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================= STORY SECTION ================= */
.story-section {
  min-height: 150vh;
  padding: 80px 15%;
}

.story {
  font-size: 22px;
  line-height: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: 2s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= BUTTONS ================= */
.next {
  margin-top: 40px;
  text-align: center;
}

.btn {
  padding: 15px 40px;
  background: #ff004c;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: #ff004c;
  transform: scale(1.1);
}

/* ================= CANVAS ================= */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}