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

:root {
  --dark-color: #000;
}

body {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--dark-color);
  overflow: hidden;
  perspective: 1000px;
}

/* ==================== Loading Screen Styles ==================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #0a0a15 30%, #050510 60%, #0f0f1e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
.loading-overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 192, 203, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 70%);
  opacity: 0.8;
}
.loading-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent), radial-gradient(2px 2px at 60% 70%, rgba(255, 192, 203, 0.8), transparent), radial-gradient(1px 1px at 50% 50%, white, transparent);
  background-size: 100% 100%;
  opacity: 0.5;
}
.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-overlay.hidden .loading-content {
  opacity: 0;
}

.loading-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.8s ease;
}

.loading-heart-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(255, 192, 203, 0.4));
  animation: containerGlow 3s ease-in-out infinite;
}

@keyframes containerGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 192, 203, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 45px rgba(255, 192, 203, 0.7));
  }
}
.loading-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.loading-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-duration: 2s;
  animation-direction: reverse;
  border-top-color: rgba(255, 255, 255, 0.4);
  border-right-color: rgba(255, 255, 255, 0.2);
}
.loading-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  animation-duration: 2.5s;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.15);
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-heart {
  font-size: 5rem;
  animation: pulseHeartAdvanced 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.4));
  position: relative;
  z-index: 2;
}

@keyframes pulseHeartAdvanced {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.4));
  }
  25% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.6));
  }
  50% {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 70px rgba(255, 255, 255, 0.5));
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.6));
  }
}
.loading-text {
  font-family: "Dancing Script", cursive, "Georgia", serif;
  font-size: 2.8rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  animation: textGlowPulse 2s ease-in-out infinite;
  position: relative;
}
.loading-text::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%, 100% {
    content: "...";
  }
}
@keyframes textGlowPulse {
  0%, 100% {
    opacity: 0.8;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 0 2px 30px rgba(255, 255, 255, 0.7), 0 0 60px rgba(255, 255, 255, 0.5);
  }
}
.loading-subtitle {
  font-size: 1rem;
  color: rgba(255, 192, 203, 0.9);
  font-family: "Georgia", serif;
  margin-top: 15px;
  opacity: 0;
  animation: subtitleFade 3s ease-in-out 0.5s infinite alternate;
  letter-spacing: 0.8px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 192, 203, 0.5), 0 0 20px rgba(255, 192, 203, 0.3);
}

@keyframes subtitleFade {
  0% {
    opacity: 0.5;
    transform: translateY(-5px) scale(0.98);
    text-shadow: 0 0 5px rgba(255, 192, 203, 0.3), 0 0 10px rgba(255, 192, 203, 0.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
    text-shadow: 0 0 15px rgba(255, 192, 203, 0.6), 0 0 25px rgba(255, 192, 203, 0.4);
  }
}
.loading-progress {
  margin-top: 30px;
  font-family: "Georgia", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  font-weight: 300;
}

.loading-progress-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  position: relative;
}
.loading-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmerProgress 1.5s infinite;
}

@keyframes shimmerProgress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.loading-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.loading-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: particleBurst 2s ease-out infinite;
}

@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(1);
    opacity: 0;
  }
}
/* ==================== End Loading Screen Styles ====================*/
.night {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  filter: blur(0.1vmin);
  background-image: radial-gradient(ellipse at top, transparent 0%, var(--dark-color)), radial-gradient(ellipse at bottom, var(--dark-color), rgba(145, 233, 255, 0.2)), repeating-linear-gradient(220deg, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 19px, transparent 19px, transparent 22px), repeating-linear-gradient(189deg, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 19px, transparent 19px, transparent 22px), repeating-linear-gradient(148deg, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 19px, transparent 19px, transparent 22px), linear-gradient(90deg, rgb(0, 255, 250), rgb(240, 240, 240));
}

.flowers {
  position: relative;
  transform: scale(0.9);
}

.flower {
  position: absolute;
  bottom: 10vmin;
  transform-origin: bottom center;
  z-index: 10;
  --fl-speed: 2.5s;
}
.flower--1 {
  animation: moving-flower-1 15s ease-in-out infinite;
}
.flower--1 .flower__line {
  height: 70vmin;
  animation-delay: 1s;
}
.flower--1 .flower__line__leaf--1 {
  animation: blooming-leaf-right var(--fl-speed) 3.8s ease-out backwards;
}
.flower--1 .flower__line__leaf--2 {
  animation: blooming-leaf-right var(--fl-speed) 4.2s ease-out backwards;
}
.flower--1 .flower__line__leaf--3 {
  animation: blooming-leaf-left var(--fl-speed) 4.6s ease-out backwards;
}
.flower--1 .flower__line__leaf--4 {
  animation: blooming-leaf-left var(--fl-speed) 5.1s ease-out backwards;
}
.flower--1 .flower__line__leaf--5 {
  animation: blooming-leaf-right var(--fl-speed) 5.5s ease-out backwards;
}
.flower--1 .flower__line__leaf--6 {
  animation: blooming-leaf-left var(--fl-speed) 6s ease-out backwards;
}
.flower--2 {
  left: 50%;
  transform: rotate(20deg);
  animation: moving-flower-2 15s ease-in-out infinite;
}
.flower--2 .flower__line {
  height: 60vmin;
  animation-delay: 1.5s;
}
.flower--2 .flower__line__leaf--1 {
  animation: blooming-leaf-right var(--fl-speed) 4.8s ease-out backwards;
}
.flower--2 .flower__line__leaf--2 {
  animation: blooming-leaf-right var(--fl-speed) 5.2s ease-out backwards;
}
.flower--2 .flower__line__leaf--3 {
  animation: blooming-leaf-left var(--fl-speed) 5.7s ease-out backwards;
}
.flower--2 .flower__line__leaf--4 {
  animation: blooming-leaf-left var(--fl-speed) 6.1s ease-out backwards;
}
.flower--3 {
  left: 50%;
  transform: rotate(-15deg);
  animation: moving-flower-3 15s ease-in-out infinite;
}
.flower--3 .flower__line {
  animation-delay: 2s;
}
.flower--3 .flower__line__leaf--1 {
  animation: blooming-leaf-right var(--fl-speed) 6s ease-out backwards;
}
.flower--3 .flower__line__leaf--2 {
  animation: blooming-leaf-right var(--fl-speed) 6.4s ease-out backwards;
}
.flower--3 .flower__line__leaf--3 {
  animation: blooming-leaf-left var(--fl-speed) 6.9s ease-out backwards;
}
.flower--3 .flower__line__leaf--4 {
  animation: blooming-leaf-left var(--fl-speed) 7.3s ease-out backwards;
}
.flower__leafs {
  position: relative;
  animation: blooming-flower 4.5s ease-out backwards;
}
.flower__leafs--1 {
  animation-delay: 2.5s;
}
.flower__leafs--2 {
  animation-delay: 3s;
}
.flower__leafs--3 {
  animation-delay: 3.5s;
}
.flower__leafs::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -100%);
  width: 8vmin;
  height: 8vmin;
  background-color: #6bf0ff;
  filter: blur(10vmin);
}
.flower__leaf {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8vmin;
  height: 11vmin;
  border-radius: 51% 49% 47% 53%/44% 45% 55% 69%;
  background-color: #a7ffee;
  background-image: linear-gradient(to top, #54b8aa, #a7ffee);
  transform-origin: bottom center;
  opacity: 0.9;
  box-shadow: inset 0 0 2vmin rgba(255, 255, 255, 0.5);
}
.flower__leaf--1 {
  transform: translate(-10%, 1%) rotateY(40deg) rotateX(-50deg);
}
.flower__leaf--2 {
  transform: translate(-50%, -4%) rotateX(40deg);
}
.flower__leaf--3 {
  transform: translate(-90%, 0%) rotateY(45deg) rotateX(50deg);
}
.flower__leaf--4 {
  width: 8vmin;
  height: 8vmin;
  transform-origin: bottom left;
  border-radius: 4vmin 10vmin 4vmin 4vmin;
  transform: translate(0%, 18%) rotateX(70deg) rotate(-43deg);
  background-image: linear-gradient(to top, #39c6d6, #a7ffee);
  z-index: 1;
  opacity: 0.8;
}
.flower__white-circle {
  position: absolute;
  left: -3.5vmin;
  top: -3vmin;
  width: 9vmin;
  height: 4vmin;
  border-radius: 50%;
  background-color: #fff;
}
.flower__white-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: inherit;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(67.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(112.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(112.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(22.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(22.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(157.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(67.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(67.5deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 12px), linear-gradient(90deg, rgb(255, 235, 18), rgb(255, 206, 0));
}
.flower__line {
  height: 55vmin;
  width: 1.5vmin;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent, rgba(255, 255, 255, 0.2)), linear-gradient(to top, transparent 10%, #14757a, #39c6d6);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
  animation: grow-flower-tree 6s backwards;
}
.flower__line__leaf {
  --w: 7vmin;
  --h: calc(var(--w) + 2vmin);
  position: absolute;
  top: 20%;
  left: 90%;
  width: var(--w);
  height: var(--h);
  border-top-right-radius: var(--h);
  border-bottom-left-radius: var(--h);
  background-image: linear-gradient(to top, rgba(20, 117, 122, 0.4), #39c6d6);
}
.flower__line__leaf--1 {
  transform: rotate(70deg) rotateY(30deg);
}
.flower__line__leaf--2 {
  top: 45%;
  transform: rotate(70deg) rotateY(30deg);
}
.flower__line__leaf--3, .flower__line__leaf--4, .flower__line__leaf--6 {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: var(--h);
  border-bottom-right-radius: var(--h);
  left: -460%;
  top: 12%;
  transform: rotate(-70deg) rotateY(30deg);
}
.flower__line__leaf--4 {
  top: 40%;
}
.flower__line__leaf--5 {
  top: 0;
  transform-origin: left;
  transform: rotate(70deg) rotateY(30deg) scale(0.6);
}
.flower__line__leaf--6 {
  top: -2%;
  left: -450%;
  transform-origin: right;
  transform: rotate(-70deg) rotateY(30deg) scale(0.6);
}
.flower__light {
  position: absolute;
  bottom: 0vmin;
  width: 1vmin;
  height: 1vmin;
  background-color: rgb(255, 251, 0);
  border-radius: 50%;
  filter: blur(0.2vmin);
  animation: light-ans 4s linear infinite backwards;
}
.flower__light:nth-child(odd) {
  background-color: #23f0ff;
}
.flower__light--1 {
  left: -2vmin;
  animation-delay: 1s;
}
.flower__light--2 {
  left: 3vmin;
  animation-delay: 0.5s;
}
.flower__light--3 {
  left: -6vmin;
  animation-delay: 0.3s;
}
.flower__light--4 {
  left: 6vmin;
  animation-delay: 0.9s;
}
.flower__light--5 {
  left: -1vmin;
  animation-delay: 1.5s;
}
.flower__light--6 {
  left: -4vmin;
  animation-delay: 3s;
}
.flower__light--7 {
  left: 3vmin;
  animation-delay: 2s;
}
.flower__light--8 {
  left: -6vmin;
  animation-delay: 3.5s;
}
.flower__grass {
  --c: #159faa;
  --line-w: 1.5vmin;
  position: absolute;
  bottom: 12vmin;
  left: -7vmin;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 20;
  transform-origin: bottom center;
  transform: rotate(-48deg) rotateY(40deg);
}
.flower__grass--1 {
  animation: moving-grass 2s linear infinite;
}
.flower__grass--2 {
  left: 2vmin;
  bottom: 10vmin;
  transform: scale(0.5) rotate(75deg) rotateX(10deg) rotateY(-200deg);
  opacity: 0.8;
  z-index: 0;
  animation: moving-grass--2 1.5s linear infinite;
}
.flower__grass--top {
  width: 7vmin;
  height: 10vmin;
  border-top-right-radius: 100%;
  border-right: var(--line-w) solid var(--c);
  transform-origin: bottom center;
  transform: rotate(-2deg);
}
.flower__grass--bottom {
  margin-top: -2px;
  width: var(--line-w);
  height: 25vmin;
  background-image: linear-gradient(to top, transparent, var(--c));
}
.flower__grass__leaf {
  --size: 10vmin;
  position: absolute;
  width: calc(var(--size) * 2.1);
  height: var(--size);
  border-top-left-radius: var(--size);
  border-top-right-radius: var(--size);
  background-image: linear-gradient(to top, transparent, transparent 30%, var(--c));
  z-index: 100;
}
.flower__grass__leaf--1 {
  top: -6%;
  left: 30%;
  --size: 6vmin;
  transform: rotate(-20deg);
  animation: growing-grass-ans--1 3.5s 5.2s ease-out backwards;
}
@keyframes growing-grass-ans--1 {
  0% {
    transform-origin: bottom left;
    transform: rotate(-20deg) scale(0);
  }
}
.flower__grass__leaf--2 {
  top: -5%;
  left: -110%;
  --size: 6vmin;
  transform: rotate(10deg);
  animation: growing-grass-ans--2 3.5s 5.6s ease-out backwards;
}
@keyframes growing-grass-ans--2 {
  0% {
    transform-origin: bottom right;
    transform: rotate(10deg) scale(0);
  }
}
.flower__grass__leaf--3 {
  top: 5%;
  left: 60%;
  --size: 8vmin;
  transform: rotate(-18deg) rotateX(-20deg);
  animation: growing-grass-ans--3 3.5s 6.1s ease-out backwards;
}
@keyframes growing-grass-ans--3 {
  0% {
    transform-origin: bottom left;
    transform: rotate(-18deg) rotateX(-20deg) scale(0);
  }
}
.flower__grass__leaf--4 {
  top: 6%;
  left: -135%;
  --size: 8vmin;
  transform: rotate(2deg);
  animation: growing-grass-ans--4 3.5s 6.6s ease-out backwards;
}
@keyframes growing-grass-ans--4 {
  0% {
    transform-origin: bottom right;
    transform: rotate(2deg) scale(0);
  }
}
.flower__grass__leaf--5 {
  top: 20%;
  left: 60%;
  --size: 10vmin;
  transform: rotate(-24deg) rotateX(-20deg);
  animation: growing-grass-ans--5 3.5s 7s ease-out backwards;
}
@keyframes growing-grass-ans--5 {
  0% {
    transform-origin: bottom left;
    transform: rotate(-24deg) rotateX(-20deg) scale(0);
  }
}
.flower__grass__leaf--6 {
  top: 22%;
  left: -180%;
  --size: 10vmin;
  transform: rotate(10deg);
  animation: growing-grass-ans--6 3.5s 7.4s ease-out backwards;
}
@keyframes growing-grass-ans--6 {
  0% {
    transform-origin: bottom right;
    transform: rotate(10deg) scale(0);
  }
}
.flower__grass__leaf--7 {
  top: 39%;
  left: 70%;
  --size: 10vmin;
  transform: rotate(-10deg);
  animation: growing-grass-ans--7 3.5s 7.8s ease-out backwards;
}
@keyframes growing-grass-ans--7 {
  0% {
    transform-origin: bottom left;
    transform: rotate(-10deg) scale(0);
  }
}
.flower__grass__leaf--8 {
  top: 40%;
  left: -215%;
  --size: 11vmin;
  transform: rotate(10deg);
  animation: growing-grass-ans--8 3.5s 8.2s ease-out backwards;
}
@keyframes growing-grass-ans--8 {
  0% {
    transform-origin: bottom right;
    transform: rotate(10deg) scale(0);
  }
}
.flower__grass__overlay {
  position: absolute;
  top: -10%;
  right: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  filter: blur(1.5vmin);
  z-index: 100;
}
.flower__g-long {
  --w: 2vmin;
  --h: 6vmin;
  --c: #159faa;
  position: absolute;
  bottom: 10vmin;
  left: -3vmin;
  transform-origin: bottom center;
  transform: rotate(-30deg) rotateY(-20deg);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: flower-g-long-ans 3s linear infinite;
}
@keyframes flower-g-long-ans {
  0%, 100% {
    transform: rotate(-30deg) rotateY(-20deg);
  }
  50% {
    transform: rotate(-32deg) rotateY(-20deg);
  }
}
.flower__g-long__top {
  top: calc(var(--h) * -1);
  width: calc(var(--w) + 1vmin);
  height: var(--h);
  border-top-right-radius: 100%;
  border-right: 0.7vmin solid var(--c);
  transform: translate(-0.7vmin, 1vmin);
}
.flower__g-long__bottom {
  width: var(--w);
  height: 50vmin;
  transform-origin: bottom center;
  background-image: linear-gradient(to top, transparent 30%, var(--c));
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
  clip-path: polygon(35% 0, 65% 1%, 100% 100%, 0% 100%);
}
.flower__g-right {
  position: absolute;
  bottom: 6vmin;
  left: -2vmin;
  transform-origin: bottom left;
  transform: rotate(20deg);
}
.flower__g-right .leaf {
  width: 30vmin;
  height: 50vmin;
  border-top-left-radius: 100%;
  border-left: 2vmin solid #079097;
  background-image: linear-gradient(to bottom, transparent, var(--dark-color) 60%);
  -webkit-mask-image: linear-gradient(to top, transparent 30%, #079097 60%);
}
.flower__g-right--1 {
  animation: flower-g-right-ans 2.5s linear infinite;
}
.flower__g-right--2 {
  left: 5vmin;
  transform: rotateY(-180deg);
  animation: flower-g-right-ans--2 3s linear infinite;
}
.flower__g-right--2 .leaf {
  height: 75vmin;
  filter: blur(0.3vmin);
  opacity: 0.8;
}
@keyframes flower-g-right-ans {
  0%, 100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(24deg) rotateX(-20deg);
  }
}
@keyframes flower-g-right-ans--2 {
  0%, 100% {
    transform: rotateY(-180deg) rotate(0deg) rotateX(-20deg);
  }
  50% {
    transform: rotateY(-180deg) rotate(6deg) rotateX(-20deg);
  }
}
.flower__g-front {
  position: absolute;
  bottom: 6vmin;
  left: 2.5vmin;
  z-index: 100;
  transform-origin: bottom center;
  transform: rotate(-28deg) rotateY(30deg) scale(1.04);
  animation: flower__g-front-ans 2s linear infinite;
}
@keyframes flower__g-front-ans {
  0%, 100% {
    transform: rotate(-28deg) rotateY(30deg) scale(1.04);
  }
  50% {
    transform: rotate(-35deg) rotateY(40deg) scale(1.04);
  }
}
.flower__g-front__line {
  width: 0.3vmin;
  height: 20vmin;
  background-image: linear-gradient(to top, transparent, #079097, transparent 100%);
  position: relative;
}
.flower__g-front__leaf-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom left;
  transform: rotate(10deg);
}
.flower__g-front__leaf-wrapper:nth-child(even) {
  left: 0vmin;
  transform: rotateY(-180deg) rotate(5deg);
  animation: flower__g-front__leaf-left-ans 1s ease-in backwards;
}
.flower__g-front__leaf-wrapper:nth-child(odd) {
  animation: flower__g-front__leaf-ans 1s ease-in backwards;
}
.flower__g-front__leaf-wrapper--1 {
  top: -8vmin;
  transform: scale(0.7);
  animation: flower__g-front__leaf-ans 1s 5.5s ease-in backwards !important;
}
.flower__g-front__leaf-wrapper--2 {
  top: -8vmin;
  transform: rotateY(-180deg) scale(0.7) !important;
  animation: flower__g-front__leaf-left-ans-2 1s 4.6s ease-in backwards !important;
}
.flower__g-front__leaf-wrapper--3 {
  top: -3vmin;
  animation: flower__g-front__leaf-ans 1s 4.6s ease-in backwards;
}
.flower__g-front__leaf-wrapper--4 {
  top: -3vmin;
  transform: rotateY(-180deg) scale(0.9) !important;
  animation: flower__g-front__leaf-left-ans-2 1s 4.6s ease-in backwards !important;
}
@keyframes flower__g-front__leaf-left-ans-2 {
  0% {
    transform: rotateY(-180deg) scale(0);
  }
}
.flower__g-front__leaf-wrapper--5, .flower__g-front__leaf-wrapper--6 {
  top: 2vmin;
}
.flower__g-front__leaf-wrapper--7, .flower__g-front__leaf-wrapper--8 {
  top: 6.5vmin;
}
.flower__g-front__leaf-wrapper--2 {
  animation-delay: 5.2s !important;
}
.flower__g-front__leaf-wrapper--3 {
  animation-delay: 4.9s !important;
}
.flower__g-front__leaf-wrapper--5 {
  animation-delay: 4.3s !important;
}
.flower__g-front__leaf-wrapper--6 {
  animation-delay: 4.1s !important;
}
.flower__g-front__leaf-wrapper--7 {
  animation-delay: 3.8s !important;
}
.flower__g-front__leaf-wrapper--8 {
  animation-delay: 3.5s !important;
}
@keyframes flower__g-front__leaf-ans {
  0% {
    transform: rotate(10deg) scale(0);
  }
}
@keyframes flower__g-front__leaf-left-ans {
  0% {
    transform: rotateY(-180deg) rotate(5deg) scale(0);
  }
}
.flower__g-front__leaf {
  width: 10vmin;
  height: 10vmin;
  border-radius: 100% 0% 0% 100%/100% 100% 0% 0%;
  box-shadow: inset 0 2px 1vmin hsla(184, 97%, 58%, 0.2);
  background-image: linear-gradient(to bottom left, transparent, var(--dark-color)), linear-gradient(to bottom right, #159faa 50%, transparent 50%, transparent);
  -webkit-mask-image: linear-gradient(to bottom right, #159faa 50%, transparent 50%, transparent);
  mask-image: linear-gradient(to bottom right, #159faa 50%, transparent 50%, transparent);
}
.flower__g-fr {
  position: absolute;
  bottom: -4vmin;
  left: vmin;
  transform-origin: bottom left;
  z-index: 10;
  animation: flower__g-fr-ans 2s linear infinite;
}
@keyframes flower__g-fr-ans {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(4deg);
  }
}
.flower__g-fr .leaf {
  width: 30vmin;
  height: 50vmin;
  border-top-left-radius: 100%;
  border-left: 2vmin solid #079097;
  -webkit-mask-image: linear-gradient(to top, transparent 25%, #079097 50%);
  position: relative;
  z-index: 1;
}
.flower__g-fr__leaf {
  position: absolute;
  top: 0;
  left: 0;
  width: 10vmin;
  height: 10vmin;
  border-radius: 100% 0% 0% 100%/100% 100% 0% 0%;
  box-shadow: inset 0 2px 1vmin hsla(184, 97%, 58%, 0.2);
  background-image: linear-gradient(to bottom left, transparent, var(--dark-color) 98%), linear-gradient(to bottom right, #23f0ff 45%, transparent 50%, transparent);
  -webkit-mask-image: linear-gradient(135deg, #159faa 40%, transparent 50%, transparent);
}
.flower__g-fr__leaf--1 {
  left: 20vmin;
  transform: rotate(45deg);
  animation: flower__g-fr-leaft-ans-1 0.5s 5.2s linear backwards;
}
@keyframes flower__g-fr-leaft-ans-1 {
  0% {
    transform-origin: left;
    transform: rotate(45deg) scale(0);
  }
}
.flower__g-fr__leaf--2 {
  left: 12vmin;
  top: -7vmin;
  transform: rotate(25deg) rotateY(-180deg);
  animation: flower__g-fr-leaft-ans-6 0.5s 5s linear backwards;
}
.flower__g-fr__leaf--3 {
  left: 15vmin;
  top: 6vmin;
  transform: rotate(55deg);
  animation: flower__g-fr-leaft-ans-5 0.5s 4.8s linear backwards;
}
.flower__g-fr__leaf--4 {
  left: 6vmin;
  top: -2vmin;
  transform: rotate(25deg) rotateY(-180deg);
  animation: flower__g-fr-leaft-ans-6 0.5s 4.6s linear backwards;
}
.flower__g-fr__leaf--5 {
  left: 10vmin;
  top: 14vmin;
  transform: rotate(55deg);
  animation: flower__g-fr-leaft-ans-5 0.5s 4.4s linear backwards;
}
@keyframes flower__g-fr-leaft-ans-5 {
  0% {
    transform-origin: left;
    transform: rotate(55deg) scale(0);
  }
}
.flower__g-fr__leaf--6 {
  left: 0vmin;
  top: 6vmin;
  transform: rotate(25deg) rotateY(-180deg);
  animation: flower__g-fr-leaft-ans-6 0.5s 4.2s linear backwards;
}
@keyframes flower__g-fr-leaft-ans-6 {
  0% {
    transform-origin: right;
    transform: rotate(25deg) rotateY(-180deg) scale(0);
  }
}
.flower__g-fr__leaf--7 {
  left: 5vmin;
  top: 22vmin;
  transform: rotate(45deg);
  animation: flower__g-fr-leaft-ans-7 0.5s 4s linear backwards;
}
@keyframes flower__g-fr-leaft-ans-7 {
  0% {
    transform-origin: left;
    transform: rotate(45deg) scale(0);
  }
}
.flower__g-fr__leaf--8 {
  left: -4vmin;
  top: 15vmin;
  transform: rotate(15deg) rotateY(-180deg);
  animation: flower__g-fr-leaft-ans-8 0.5s 3.8s linear backwards;
}
@keyframes flower__g-fr-leaft-ans-8 {
  0% {
    transform-origin: right;
    transform: rotate(15deg) rotateY(-180deg) scale(0);
  }
}

.long-g {
  position: absolute;
  bottom: 25vmin;
  left: -42vmin;
  transform-origin: bottom left;
}
.long-g--1 {
  bottom: 0vmin;
  transform: scale(0.8) rotate(-5deg);
}
.long-g--1 .leaf {
  -webkit-mask-image: linear-gradient(to top, transparent 40%, #079097 80%) !important;
}
.long-g--1 .leaf--1 {
  --w: 5vmin;
  --h: 60vmin;
  left: -2vmin;
  transform: rotate(3deg) rotateY(-180deg);
}
.long-g--2, .long-g--3 {
  bottom: -3vmin;
  left: -35vmin;
  transform-origin: center;
  transform: scale(0.6) rotateX(60deg);
}
.long-g--2 .leaf, .long-g--3 .leaf {
  -webkit-mask-image: linear-gradient(to top, transparent 50%, #079097 80%) !important;
}
.long-g--2 .leaf--1, .long-g--3 .leaf--1 {
  left: -1vmin;
  transform: rotateY(-180deg);
}
.long-g--3 {
  left: -17vmin;
  bottom: 0vmin;
}
.long-g--3 .leaf {
  -webkit-mask-image: linear-gradient(to top, transparent 40%, #079097 80%) !important;
}
.long-g--4 {
  left: 25vmin;
  bottom: -3vmin;
  transform-origin: center;
  transform: scale(0.6) rotateX(60deg);
}
.long-g--4 .leaf {
  -webkit-mask-image: linear-gradient(to top, transparent 50%, #079097 80%) !important;
}
.long-g--5 {
  left: 42vmin;
  bottom: 0vmin;
  transform: scale(0.8) rotate(2deg);
}
.long-g--6 {
  left: 0vmin;
  bottom: -20vmin;
  z-index: 100;
  filter: blur(0.3vmin);
  transform: scale(0.8) rotate(2deg);
}
.long-g--7 {
  left: 35vmin;
  bottom: 20vmin;
  z-index: -1;
  filter: blur(0.3vmin);
  transform: scale(0.6) rotate(2deg);
  opacity: 0.7;
}
.long-g .leaf {
  --w: 15vmin;
  --h: 40vmin;
  --c: #1aaa15;
  position: absolute;
  bottom: 0;
  width: var(--w);
  height: var(--h);
  border-top-left-radius: 100%;
  border-left: 2vmin solid var(--c);
  -webkit-mask-image: linear-gradient(to top, transparent 20%, var(--dark-color));
  transform-origin: bottom center;
}
.long-g .leaf--0 {
  left: 2vmin;
  animation: leaf-ans-1 4s linear infinite;
}
.long-g .leaf--1 {
  --w: 5vmin;
  --h: 60vmin;
  animation: leaf-ans-1 4s linear infinite;
}
.long-g .leaf--2 {
  --w: 10vmin;
  --h: 40vmin;
  left: -0.5vmin;
  bottom: 5vmin;
  transform-origin: bottom left;
  transform: rotateY(-180deg);
  animation: leaf-ans-2 3s linear infinite;
}
.long-g .leaf--3 {
  --w: 5vmin;
  --h: 30vmin;
  left: -1vmin;
  bottom: 3.2vmin;
  transform-origin: bottom left;
  transform: rotate(-10deg) rotateY(-180deg);
  animation: leaf-ans-3 3s linear infinite;
}

@keyframes leaf-ans-1 {
  0%, 100% {
    transform: rotate(-5deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.1);
  }
}
@keyframes leaf-ans-2 {
  0%, 100% {
    transform: rotateY(-180deg) rotate(5deg);
  }
  50% {
    transform: rotateY(-180deg) rotate(0deg) scale(1.1);
  }
}
@keyframes leaf-ans-3 {
  0%, 100% {
    transform: rotate(-10deg) rotateY(-180deg);
  }
  50% {
    transform: rotate(-20deg) rotateY(-180deg);
  }
}
.grow-ans {
  animation: grow-ans 2s var(--d) backwards;
}

@keyframes grow-ans {
  0% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes light-ans {
  0% {
    opacity: 0;
    transform: translateY(0vmin);
  }
  25% {
    opacity: 1;
    transform: translateY(-5vmin) translateX(-2vmin);
  }
  50% {
    opacity: 1;
    transform: translateY(-15vmin) translateX(2vmin);
    filter: blur(0.2vmin);
  }
  75% {
    transform: translateY(-20vmin) translateX(-2vmin);
    filter: blur(0.2vmin);
  }
  100% {
    transform: translateY(-30vmin);
    opacity: 0;
    filter: blur(1vmin);
  }
}
@keyframes moving-flower-1 {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
@keyframes moving-flower-2 {
  0%, 100% {
    transform: rotate(18deg);
  }
  50% {
    transform: rotate(14deg);
  }
}
@keyframes moving-flower-3 {
  0%, 100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(-20deg) rotateY(-10deg);
  }
}
@keyframes blooming-leaf-right {
  0% {
    transform-origin: left;
    transform: rotate(70deg) rotateY(30deg) scale(0);
  }
}
@keyframes blooming-leaf-left {
  0% {
    transform-origin: right;
    transform: rotate(-70deg) rotateY(30deg) scale(0);
  }
}
@keyframes grow-flower-tree {
  0% {
    height: 0;
    border-radius: 1vmin;
  }
}
@keyframes blooming-flower {
  0% {
    transform: scale(0);
  }
}
@keyframes moving-grass {
  0%, 100% {
    transform: rotate(-48deg) rotateY(40deg);
  }
  50% {
    transform: rotate(-50deg) rotateY(40deg);
  }
}
@keyframes moving-grass--2 {
  0%, 100% {
    transform: scale(0.5) rotate(75deg) rotateX(10deg) rotateY(-200deg);
  }
  50% {
    transform: scale(0.5) rotate(79deg) rotateX(10deg) rotateY(-200deg);
  }
}
.growing-grass {
  animation: growing-grass-ans 2.5s 3s ease-out backwards;
}

@keyframes growing-grass-ans {
  0% {
    transform: scale(0);
  }
}
.not-loaded *:not(.loading-overlay):not(.loading-overlay *) {
  animation-play-state: paused !important;
}

/* ==================== Valentine's Proposal Enhancements ==================== */
/* Proposal Container */
.proposal-container {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(8, 8, 20, 0.98) 0%, rgba(18, 18, 38, 0.96) 30%, rgba(28, 18, 48, 0.94) 60%, rgba(12, 12, 32, 0.98) 100%);
  backdrop-filter: blur(10px);
  animation: slideDownOverlay 1.5s ease-out 8s forwards;
  pointer-events: none;
  overflow: hidden;
}
.proposal-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite alternate;
}
.proposal-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent), radial-gradient(2px 2px at 60% 70%, white, transparent), radial-gradient(1px 1px at 50% 50%, white, transparent), radial-gradient(1px 1px at 80% 10%, white, transparent), radial-gradient(2px 2px at 90% 60%, white, transparent), radial-gradient(1px 1px at 33% 70%, white, transparent), radial-gradient(2px 2px at 79% 80%, white, transparent);
  background-size: 200% 200%;
  background-position: 50% 50%;
  animation: starsFloat 8s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes starsFloat {
  0%, 100% {
    background-position: 0% 0%;
    opacity: 0.4;
  }
  50% {
    background-position: 100% 100%;
    opacity: 0.7;
  }
}
@keyframes shimmer {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}
.proposal-container.visible {
  pointer-events: auto;
}

.proposal-box {
  position: relative;
  backdrop-filter: blur(20px);
  padding: 0;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 255, 255, 0.05);
  text-align: center;
  max-width: 850px;
  max-height: 90vh;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.8);
  opacity: 0;
  animation: popIn 0.8s ease-out 9s forwards;
  z-index: 10;
  overflow: hidden;
  background: rgba(15, 15, 35, 0.97);
}
.proposal-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 107, 157, 0.3), rgba(255, 23, 68, 0.3), rgba(255, 255, 255, 0.15));
  background-size: 300% 300%;
  border-radius: 32px;
  z-index: -1;
  animation: gradientFlow 4s ease infinite;
  filter: blur(8px);
  pointer-events: none;
}

.proposal-box-inner {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 45px 55px 50px;
  background: rgba(15, 15, 35, 0.97);
  border-radius: 30px;
  /* Beautiful custom scrollbar */
}
.proposal-box-inner::-webkit-scrollbar {
  width: 10px;
}
.proposal-box-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin: 10px 0;
}
.proposal-box-inner::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 107, 157, 0.5), rgba(255, 23, 68, 0.5));
  border-radius: 10px;
  border: 2px solid rgba(15, 15, 35, 0.8);
}
.proposal-box-inner::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 107, 157, 0.7), rgba(255, 23, 68, 0.7));
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.proposal-opening {
  font-family: "Dancing Script", "Georgia", cursive;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInText 1s ease-out 9.5s forwards;
}

.proposal-header {
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInText 1s ease-out 10s forwards;
}

.stars-decoration {
  font-size: 28px;
  margin-bottom: 15px;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.divider {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 18px 0;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInText 1s ease-out 11s forwards;
}

.divider-bottom {
  margin-top: 22px;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInText 1s ease-out 13s forwards;
}

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.proposal-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 107, 157, 0.3);
  margin-bottom: 15px;
  letter-spacing: 0.02em;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 107, 157, 0.2);
  }
  100% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 255, 255, 0.5), 0 0 90px rgba(255, 107, 157, 0.4);
  }
}
.proposal-text {
  font-family: "Georgia", serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInText 1s ease-out 10.5s forwards;
}
.proposal-text em {
  color: rgba(255, 200, 220, 0.95);
  font-style: italic;
}
.proposal-text strong {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.proposal-ending {
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 220, 235, 0.95);
  margin-bottom: 18px;
  text-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
  opacity: 0;
  animation: fadeInText 1s ease-out 11.5s forwards;
}

.proposal-question {
  font-family: "Dancing Script", "Georgia", cursive;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin: 25px 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 107, 157, 0.3);
  opacity: 0;
  animation: fadeInText 1s ease-out 12s forwards, questionPulse 2.5s ease-in-out 13s infinite;
}

@keyframes questionPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
  }
}
/* Buttons */
.proposal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInText 1s ease-out 12.5s forwards;
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-yes, .btn-no {
  padding: 18px 50px;
  font-size: 19px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  font-family: "Georgia", serif;
}

.btn-yes {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff1744 100%);
  color: white;
}
.btn-yes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-yes:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.6), 0 0 40px rgba(255, 107, 157, 0.4);
}
.btn-yes:hover::before {
  opacity: 1;
}
.btn-yes:active {
  transform: scale(1.05);
}

.btn-no {
  background: linear-gradient(135deg, #9575cd 0%, #7e57c2 100%);
  color: white;
}
.btn-no::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-no:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #ab8ee0 0%, #9575cd 100%);
  box-shadow: 0 8px 30px rgba(149, 117, 205, 0.5), 0 0 35px rgba(171, 142, 224, 0.3);
}
.btn-no:hover::before {
  opacity: 1;
}

.response-message {
  display: none;
  font-family: "Georgia", serif;
  font-size: 22px;
  background: linear-gradient(135deg, #ff1493, #ff69b4, #ba55d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 25px;
  animation: fadeInScale 0.5s ease-out, bounce 1s ease-in-out infinite;
  font-weight: normal; /* Changed from bold to allow inline formatting */
  line-height: 1.6;
  filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
  /* Allow strong and em tags to work properly */
}
.response-message strong {
  font-weight: 700;
}
.response-message em {
  font-style: italic;
}

/* Remove scroll indicator since we're not scrolling */
.scroll-indicator {
  display: none;
}

/* ==================== Sparkles Animation ==================== */
.sparkles-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 500;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: sparkleFloat 6s infinite ease-in-out;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.sparkle-1 {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  font-size: 25px;
}

.sparkle-2 {
  left: 25%;
  top: 60%;
  animation-delay: 0.5s;
  font-size: 18px;
}

.sparkle-3 {
  left: 40%;
  top: 30%;
  animation-delay: 1s;
  font-size: 22px;
}

.sparkle-4 {
  left: 55%;
  top: 70%;
  animation-delay: 1.5s;
  font-size: 20px;
}

.sparkle-5 {
  left: 70%;
  top: 40%;
  animation-delay: 2s;
  font-size: 24px;
}

.sparkle-6 {
  left: 85%;
  top: 80%;
  animation-delay: 2.5s;
  font-size: 19px;
}

.sparkle-7 {
  left: 15%;
  top: 85%;
  animation-delay: 3s;
  font-size: 21px;
}

.sparkle-8 {
  left: 60%;
  top: 15%;
  animation-delay: 3.5s;
  font-size: 23px;
}

.sparkle-9 {
  left: 90%;
  top: 50%;
  animation-delay: 1.2s;
  font-size: 20px;
}

.sparkle-10 {
  left: 30%;
  top: 90%;
  animation-delay: 2.8s;
  font-size: 22px;
}

@keyframes sparkleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1.2) rotate(180deg);
  }
}
/* ==================== Butterflies Animation ==================== */
.butterflies-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 998;
  overflow: hidden;
}

.butterfly {
  position: absolute;
  font-size: 35px;
  opacity: 0;
  animation: butterflyFly 28s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.6));
}
.butterfly .butterfly-body {
  animation: butterflyFlap 0.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes butterflyFlap {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.2) scaleY(0.95);
  }
}
/* Cute Capybara */
.capybara-container {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 999;
  text-align: center;
  opacity: 0;
  animation: capybaraAppear 2s ease-out 5s forwards;
  pointer-events: none;
}

.capybara {
  width: 150px;
  height: auto;
  animation: capybaraBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(255, 105, 180, 0.4));
  transform-origin: bottom;
}

.capybara-message {
  font-family: "Comic Sans MS", "Georgia", serif;
  font-size: 16px;
  color: #ff1493;
  margin-top: 8px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  border: 2px solid #ff69b4;
  animation: messagePulse 3s ease-in-out infinite;
}

@keyframes capybaraAppear {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.5);
  }
  60% {
    transform: translateY(-10px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes capybaraBounce {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(0) rotate(-2deg);
  }
  75% {
    transform: translateY(-5px) rotate(1deg);
  }
}
@keyframes messagePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* ==================== Floating Polaroid Photos ==================== */
.polaroid-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.polaroid {
  position: absolute;
  background: white;
  padding: 15px 15px 45px 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  transform-origin: center;
  opacity: 0;
  animation: fadeInFloat 2s ease-out forwards;
}
.polaroid img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.polaroid .polaroid-caption {
  text-align: center;
  font-size: 24px;
  margin-top: 8px;
}

.polaroid-1 {
  top: 10%;
  left: 8%;
  transform: rotate(-8deg);
  animation: fadeInFloat 2s ease-out forwards, floatPolaroid1 22s ease-in-out infinite;
  animation-delay: 0s, 2s;
}

.polaroid-2 {
  top: 15%;
  right: 10%;
  transform: rotate(12deg);
  animation: fadeInFloat 2s ease-out 0.5s forwards, floatPolaroid2 26s ease-in-out infinite;
  animation-delay: 0.5s, 2.5s;
}

.polaroid-3 {
  bottom: 15%;
  left: 5%;
  transform: rotate(5deg);
  animation: fadeInFloat 2s ease-out 1s forwards, floatPolaroid3 30s ease-in-out infinite;
  animation-delay: 1s, 3s;
}

.polaroid-4 {
  bottom: 20%;
  right: 8%;
  transform: rotate(-10deg);
  animation: fadeInFloat 2s ease-out 1.5s forwards, floatPolaroid4 25s ease-in-out infinite;
  animation-delay: 1.5s, 3.5s;
}

@keyframes fadeInFloat {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes floatPolaroid1 {
  0%, 100% {
    transform: translateY(0) rotate(-8deg);
  }
  25% {
    transform: translateY(-20px) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-10deg);
  }
  75% {
    transform: translateY(-25px) rotate(-6deg);
  }
}
@keyframes floatPolaroid2 {
  0%, 100% {
    transform: translateY(0) rotate(12deg);
  }
  25% {
    transform: translateY(-15px) rotate(15deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
  75% {
    transform: translateY(-10px) rotate(14deg);
  }
}
@keyframes floatPolaroid3 {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }
  33% {
    transform: translateY(-18px) rotate(8deg);
  }
  66% {
    transform: translateY(-12px) rotate(3deg);
  }
}
@keyframes floatPolaroid4 {
  0%, 100% {
    transform: translateY(0) rotate(-10deg);
  }
  30% {
    transform: translateY(-22px) rotate(-7deg);
  }
  60% {
    transform: translateY(-8px) rotate(-12deg);
  }
}
.butterfly-1 {
  left: -50px;
  top: 20%;
  animation-delay: 2s;
}

.butterfly-2 {
  right: -50px;
  top: 50%;
  animation-delay: 6s;
  animation-duration: 35s;
}

.butterfly-3 {
  left: -50px;
  top: 70%;
  animation-delay: 12s;
  animation-duration: 32s;
}

.butterfly-4 {
  right: -50px;
  top: 35%;
  animation-delay: 18s;
  animation-duration: 34s;
}

@keyframes butterflyFly {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(50vw) translateY(-30px) rotate(20deg);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw) translateY(20px) rotate(-10deg);
    opacity: 0;
  }
}
/* ==================== Corner Decorations ==================== */
.corner-decoration {
  position: absolute;
  font-size: 30px;
  animation: rotate360 6s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.8));
}

.top-left {
  top: -15px;
  left: -15px;
  animation-delay: 0s;
}

.top-right {
  top: -15px;
  right: -15px;
  animation-delay: 1s;
}

.bottom-left {
  bottom: -15px;
  left: -15px;
  animation-delay: 2s;
}

.bottom-right {
  bottom: -15px;
  right: -15px;
  animation-delay: 3s;
}

@keyframes rotate360 {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
}
/* ==================== Divider ==================== */
.divider {
  font-size: 18px;
  color: #ff69b4;
  margin: 20px 0;
  animation: pulse 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

/* Floating Hearts */
.hearts-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.heart {
  position: absolute;
  font-size: 30px;
  opacity: 0;
  animation: floatHeart 22s infinite ease-in-out;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.6));
}

.heart-1 {
  left: 10%;
  animation-delay: 0s;
}

.heart-2 {
  left: 20%;
  animation-delay: 1s;
  font-size: 40px;
}

.heart-3 {
  left: 30%;
  animation-delay: 2s;
}

.heart-4 {
  left: 50%;
  animation-delay: 0.5s;
  font-size: 35px;
}

.heart-5 {
  left: 60%;
  animation-delay: 1.5s;
}

.heart-6 {
  left: 70%;
  animation-delay: 2.5s;
  font-size: 45px;
}

.heart-7 {
  left: 80%;
  animation-delay: 3s;
}

.heart-8 {
  left: 90%;
  animation-delay: 1.8s;
  font-size: 38px;
}

/* Confetti */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  z-index: 1001;
  animation: confettiFall linear forwards;
}

/* Enhanced night sky with stars */
.night::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent), radial-gradient(2px 2px at 60% 70%, white, transparent), radial-gradient(1px 1px at 50% 50%, white, transparent), radial-gradient(1px 1px at 80% 10%, white, transparent), radial-gradient(2px 2px at 90% 60%, white, transparent), radial-gradient(1px 1px at 33% 80%, white, transparent), radial-gradient(2px 2px at 15% 90%, white, transparent);
  background-size: 200% 200%;
  animation: twinkle 5s ease-in-out infinite;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideDownOverlay {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4), 0 0 40px rgba(147, 51, 234, 0.3);
  }
  50% {
    box-shadow: 0 20px 80px rgba(255, 20, 147, 0.6), 0 0 60px rgba(147, 51, 234, 0.5);
  }
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.1);
  }
  20%, 40% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Updated: February 14, 2026 - Slow fadeOut animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@keyframes sparkleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px) scale(1) rotate(60deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0.5) rotate(360deg);
  }
}
@keyframes heartExplode {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(cos(var(--angle)) * var(--distance)), calc(sin(var(--angle)) * var(--distance))) rotate(720deg) scale(1);
    opacity: 0;
  }
}
@keyframes floatHeart {
  0% {
    bottom: -50px;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: translateX(100px) rotate(360deg);
  }
}
@keyframes confettiFall {
  to {
    top: 100%;
    transform: rotateZ(360deg);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.7;
    background-position: 0% 0%;
  }
  50% {
    opacity: 1;
    background-position: 100% 100%;
  }
}
/* Enhance flower colors to be more romantic */
.flower__leafs--1 .flower__white-circle, .flower__leafs--2 .flower__white-circle, .flower__leafs--3 .flower__white-circle {
  background: radial-gradient(circle, #ffb3d9 0%, #ff69b4 100%);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}
.flower__leafs--1 .flower__leaf, .flower__leafs--2 .flower__leaf, .flower__leafs--3 .flower__leaf {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff69b4 100%);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.flower__light {
  background: radial-gradient(circle, #ffd700 0%, #ff69b4 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* Music Control Button */
.music-control {
  display: none; /* Hidden to avoid covering capybara text */
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 15, 35, 0.9);
  border: 2px solid rgba(255, 107, 157, 0.5);
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  animation: musicPulse 2s ease-in-out infinite;
}
.music-control:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
  border-color: rgba(255, 107, 157, 0.8);
}
.music-control.paused {
  animation: none;
  opacity: 0.6;
}

@keyframes musicPulse {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 157, 0.3);
  }
  50% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 157, 0.6);
  }
}

/*# sourceMappingURL=css.css.map */
