body {
  margin: 0;
  background: linear-gradient(to top, #ffe6e6, #ffffff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #d00000;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  z-index: 2;
  position: relative;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #c0392b;
}

p {
  font-size: 1.2em;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.message {
  font-size: 1.5em;
  margin-top: 30px;
  color: #8e0000;
  font-weight: bold;
}

.promise {
  margin-top: 40px;
  padding: 20px;
  font-size: 1.3em;
  background: #fff1f1;
  border-left: 5px solid #ff6b6b;
  border-radius: 10px;
  color: #b30000;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.photo-frame {
  margin: 40px auto 20px;
  padding: 15px;
  background: rgba(255, 245, 245, 0.9);
  border: 3px solid #ff6b6b;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.special-photo {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  transform: rotate(45deg);
  animation: float 8s linear infinite;
  opacity: 0.8;
}

.heart::before,
.heart::after {
  content: '';
  position: absolute;
  width: 20px;
  height:  Ascending
20px;
  background: red;
  border-radius: 50%;
}

.heart::before {
  top: -10px;
  left: 0;
}

.heart::after {
  left: -10px;
  top: 0;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(45deg);
    opacity: 0;
  }
}

.bubble {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcccb;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1em;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 3;
}

.bubble.show {
  opacity: 1;
}