/* ============================================
   FINAL SECTION
   ============================================ */

.final-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, rgba(155, 109, 215, 0.2), transparent 60%);
}

.final-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--purple-glow);
  text-shadow: 0 0 60px rgba(217, 160, 255, 0.35);
  margin-bottom: 1rem;
}

.final-subtext {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--purple-soft);
  font-style: italic;
  max-width: 500px;
}

.final-heart-btn {
  margin-top: 3rem;
  width: 100px;
  height: 100px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 4rem;
  animation: heartPulse 1.2s ease infinite;
  filter: drop-shadow(0 0 20px rgba(217, 160, 255, 0.4));
  transition: transform 0.3s;
}

.final-heart-btn:hover {
  transform: scale(1.2);
}

.final-tiny {
  margin-top: 2rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  color: rgba(201, 164, 245, 0.35);
  letter-spacing: 2px;
}

/* ============================================
   MUSIC TOGGLE
   ============================================ */

.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  padding: 0 14px 0 12px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid rgba(217, 160, 255, 0.25);
  background: rgba(46, 26, 74, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.music-toggle-text {
  color: rgba(217, 160, 255, 0.95);
  font-size: 0.95rem;
  white-space: nowrap;
}

.music-toggle:hover {
  border-color: var(--purple-glow);
  transform: scale(1.1);
}

.music-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 20px;
}

.music-bars span {
  width: 3px;
  background: var(--purple-glow);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.music-bars span:nth-child(1) { height: 6px; }
.music-bars span:nth-child(2) { height: 10px; }
.music-bars span:nth-child(3) { height: 14px; }
.music-bars span:nth-child(4) { height: 8px; }

.music-bars.playing span:nth-child(1) { animation: musicBar 0.5s ease infinite alternate; }
.music-bars.playing span:nth-child(2) { animation: musicBar 0.5s ease 0.1s infinite alternate; }
.music-bars.playing span:nth-child(3) { animation: musicBar 0.5s ease 0.2s infinite alternate; }
.music-bars.playing span:nth-child(4) { animation: musicBar 0.5s ease 0.3s infinite alternate; }
