:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #ff77b0 0%, #5b2d90 100%);
  color: white;
  font-family: Inter, system-ui, sans-serif;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.page-wrapper {
  width: min(100%, 960px);
  position: relative;
}

.flower-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.flower {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffe0f8 0%, #ff6ee0 50%, #d152e8 100%);
  border-radius: 50%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
  animation: drift 8s linear infinite, sway 3.4s ease-in-out infinite alternate;
}

.flower::before,
.flower::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: inherit;
  border-radius: 50%;
}

.flower::before {
  top: -8px;
  left: 4px;
}

.flower::after {
  left: -8px;
  top: 4px;
}

.flower:nth-child(1) { left: 6%; animation-duration: 7.2s; animation-delay: -1.4s; }
.flower:nth-child(2) { left: 18%; animation-duration: 9.4s; animation-delay: -2.1s; }
.flower:nth-child(3) { left: 30%; animation-duration: 8.7s; animation-delay: -0.9s; }
.flower:nth-child(4) { left: 42%; animation-duration: 10.1s; animation-delay: -3.2s; }
.flower:nth-child(5) { left: 54%; animation-duration: 7.9s; animation-delay: -0.5s; }
.flower:nth-child(6) { left: 66%; animation-duration: 8.5s; animation-delay: -1.8s; }
.flower:nth-child(7) { left: 78%; animation-duration: 9.1s; animation-delay: -2.6s; }
.flower:nth-child(8) { left: 88%; animation-duration: 7.7s; animation-delay: -1.1s; }
.flower:nth-child(9) { left: 12%; animation-duration: 8.8s; animation-delay: -4.0s; }
.flower:nth-child(10) { left: 25%; animation-duration: 9.5s; animation-delay: -2.9s; }
.flower:nth-child(11) { left: 50%; animation-duration: 8.3s; animation-delay: -1.7s; }
.flower:nth-child(12) { left: 82%; animation-duration: 9.9s; animation-delay: -3.8s; }

.content-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

p {
  max-width: 36rem;
  margin: 0 auto 32px;
  line-height: 1.8;
  opacity: 0.88;
}

.image-frame {
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.12);
  transform: translateY(0);
  animation: floatCard 6s ease-in-out infinite;
}

img {
  width: min(420px, 90vw);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  transform: scale(0.96);
  animation: popIn 1.2s ease forwards;
}

@keyframes drift {
  0% {
    transform: translateY(-140px) rotate(0deg);
    top: -12%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    top: 110%;
    opacity: 0.2;
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(14px);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(0.96);
  }
}
