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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 25%, #FBCFE8 50%, #FCE7F3 75%, #FDF2F8 100%);
  background-size: 400% 400%;
  font-family: 'Quicksand', sans-serif;
  overflow: hidden;
  position: relative;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

#phase1, #phase2, #phase3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hidden {
  display: none !important;
}

.line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
}

.word {
  display: inline-block;
  opacity: 0;
  font-family: 'Caveat', cursive;
  font-size: 4.5rem;
  font-weight: 700;
  color: #DB2777;
  text-shadow: 2px 2px 4px rgba(219, 39, 119, 0.15);
  line-height: 1.2;
}

#line2 .word {
  font-size: 3.8rem;
}

.btn {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0;
}

#clearBtn {
  background: transparent;
  color: #DB2777;
  border: 2px solid #DB2777;
}

#clearBtn:hover {
  background: #DB2777;
  color: #fff;
  transform: translateY(-1px);
}

.yes-btn {
  background: linear-gradient(135deg, #DB2777, #BE185D);
  color: #fff;
  box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

.yes-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
}
