body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  margin: 0;
  background: #ffd1e7;
  font-family: sans-serif;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

/* Surprise Button */
#banner-btn {
  position: fixed;
  margin-top: 10px;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff8fcf;
  color: #fff;
  font-family: 'Cookie', cursive;
  font-size: 2.0em;
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px #0001;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

#banner-btn:hover {
  background: #ff5bbd;
}

/* Floating future icon */
#future-link {
  position: fixed;
  margin-top: 10px;
  top: 45px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 2px 8px #0002;
  padding: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  pointer-events: auto;
}

#future-link:hover {
  background: #ff8fcf;
  box-shadow: 0 4px 16px #ff8fcf55;
}

#future-icon {
  display: block;
  width: 42px;
  height: 42px;
  stroke: #ff8fcf;
  transition: stroke 0.2s;
}

#future-link:hover #future-icon {
  stroke: #fff;
}

/* Heart shape */
#bubble {
  position: relative;
  width: 100px;
  height: 90px;
  background: #e25555;
  transform: rotate(-45deg);
  margin-top: 20px;
  cursor: pointer;
  user-select: none;
}

#bubble::before,
#bubble::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 90px;
  background: #e25555;
  border-radius: 50%;
}

#bubble::before {
  top: -50px;
  left: 0;
}

#bubble::after {
  left: 50px;
  top: 0;
}

.bubble-container {
  position: relative;
  width: 100px;
  height: 90px;
  display: inline-block;
  margin-top: 0;
  transform: translateY(-20px);
}

#bubble-text {
  position: absolute;
  top: 55px;
  left: 5px;
  width: 100%;
  z-index: 2;
  color: white;
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  text-align: center;
  pointer-events: none;
  text-shadow: 1px 1px 2px #00000080;
  transform: rotate(45deg) translate(-50%, -50%) scale(0.9);
}

/* Message popup */
#quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#quote-modal.show {
  display: flex;
}

#modal-content {
  background: white;
  padding: 20px;
  max-width: 80%;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  position: relative;
}

#quote-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#quote-modal.show {
  opacity: 1;
  pointer-events: auto;
}

#modal-content {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#quote-modal.show #modal-content {
  transform: scale(1);
}

.hidden {
  display: none;
}

#footer-message {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #b30059;
  font-family: 'Merienda', cursive;
  font-size: 1.5em;
  letter-spacing: 1px;
  pointer-events: none;
  user-select: none;
}