:root {
  --rose: #e8a0a8;
  --rose-deep: #b84d5c;
  --rose-hot: #d96a7a;
  --blush: rgba(255, 220, 235, 0.15);
  --cream: rgba(30, 22, 35, 0.6);
  --gold: #c9a86c;
  --text: #f5e6f0;
  --text-soft: #b8a0b8;
  --shadow: rgba(180, 80, 100, 0.25);
  --bg-dark: #0f0a12;
  --bg-card: rgba(28, 20, 36, 0.85);
  --border-glow: rgba(217, 106, 122, 0.35);
}

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

body {
  font-family: 'Quicksand', sans-serif;
  background: 
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(80, 30, 60, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 80% 80%, rgba(120, 50, 80, 0.3) 0%, transparent 45%),
    linear-gradient(180deg, #0f0a12 0%, #1a0f1a 40%, #150d18 100%);
  min-height: 100vh;
  color: var(--text);
  overflow-x: hidden;
}

.view {
  min-height: 100vh;
  padding: 2rem 1rem 3rem;
  transition: opacity 0.5s ease;
}

.view.hidden {
  display: none !important;
}

/* ----- Create View ----- */
.create-container {
  max-width: 520px;
  margin: 0 auto;
}

.create-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(217, 106, 122, 0.4);
}

.tagline {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-style: italic;
  letter-spacing: 0.04em;
}

.proposal-form {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-glow);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06), 0 0 60px rgba(180, 80, 100, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(40, 28, 50, 0.5);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-hot);
  box-shadow: 0 0 0 3px rgba(217, 106, 122, 0.2), 0 0 20px rgba(217, 106, 122, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.message-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.preset-btn {
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  background: rgba(60, 40, 70, 0.4);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.preset-btn:hover {
  background: rgba(217, 106, 122, 0.25);
  color: var(--text);
  border-color: var(--rose-hot);
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.flower-option {
  aspect-ratio: 0.95;
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  background: rgba(40, 28, 50, 0.4);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  transition: all 0.25s ease;
  overflow: hidden;
  padding: 0;
}

.flower-option .flower-emoji {
  font-size: 2.4rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flower-emoji-pulse 2.5s ease-in-out infinite;
}

.flower-option:nth-child(odd) .flower-emoji { animation-delay: 0.3s; }
.flower-option:nth-child(3n) .flower-emoji { animation-delay: 0.6s; }
.flower-option:nth-child(4n) .flower-emoji { animation-delay: 0.9s; }

@keyframes flower-emoji-pulse {
  0%, 100% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 8px rgba(217, 106, 122, 0.2)); }
  50% { transform: scale(1.12) translateY(-4px); filter: drop-shadow(0 4px 12px rgba(217, 106, 122, 0.35)); }
}

.flower-option span:last-child {
  font-size: 0.6rem;
  padding: 0.3rem;
  background: rgba(20, 12, 28, 0.9);
  color: var(--text-soft);
  text-align: center;
  flex-shrink: 0;
}

.flower-option:hover {
  border-color: var(--rose-hot);
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 20px rgba(217, 106, 122, 0.15);
}

.flower-option.selected {
  border-color: var(--rose-hot);
  background: rgba(120, 60, 90, 0.3);
  box-shadow: 0 0 0 2px rgba(217, 106, 122, 0.3), 0 8px 32px rgba(0,0,0,0.35);
}

.flower-hint {
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.gender-options {
  display: flex;
  gap: 1rem;
}

.gender-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.gender-option input { margin-right: 0.5rem; accent-color: var(--rose-deep); }

.gender-label {
  font-weight: 500;
  color: var(--text);
}

.btn-create {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-hot) 50%, var(--rose) 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(180, 80, 100, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-create:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(180, 80, 100, 0.45), 0 0 30px rgba(217, 106, 122, 0.2);
}

.link-section {
  margin-top: 2rem;
  text-align: center;
}

.link-section.hidden {
  display: none !important;
}

.link-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-soft);
}

.link-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.link-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  font-size: 0.9rem;
  background: rgba(40, 28, 50, 0.5);
  color: var(--text);
}

.btn-copy {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-hot));
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(180, 80, 100, 0.3);
}

.btn-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(180, 80, 100, 0.4);
}

.btn-secondary {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  background: transparent;
  color: var(--text-soft);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(217, 106, 122, 0.2);
  color: var(--text);
  border-color: var(--rose-hot);
}

/* ----- Reveal View ----- */
#reveal-view {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.reveal-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hearts-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 10% 90%, rgba(120, 50, 80, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 90% 10%, rgba(80, 40, 70, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 50% 50%, rgba(50, 25, 55, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(100, 50, 90, 0.25) 0%, transparent 40%);
  animation: pulse-bg 10s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.02); }
}

.bokeh-orbs {
  position: absolute;
  inset: -20%;
  opacity: 0.5;
}

.bokeh-orbs::before,
.bokeh-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: bokeh-float 18s ease-in-out infinite;
}

.bokeh-orbs::before {
  width: 280px;
  height: 280px;
  background: rgba(150, 80, 120, 0.35);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.bokeh-orbs::after {
  width: 220px;
  height: 220px;
  background: rgba(120, 60, 100, 0.3);
  bottom: 20%;
  right: 15%;
  animation-delay: -6s;
}

.bokeh-orb--center {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(100, 50, 90, 0.4);
  filter: blur(50px);
  top: 50%;
  left: 50%;
  animation: bokeh-float-center 20s ease-in-out infinite;
}

@keyframes bokeh-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 20px) scale(0.98); }
}

@keyframes bokeh-float-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -48%) scale(1.1); opacity: 0.6; }
}

.floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-hearts .heart-particle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.35;
  animation: heart-float-up 14s linear infinite;
  bottom: -2rem;
}

.floating-hearts .heart-particle:nth-child(odd) { animation-duration: 16s; }
.floating-hearts .heart-particle:nth-child(3n) { animation-duration: 12s; opacity: 0.25; }
.floating-hearts .heart-particle:nth-child(5n) { animation-duration: 18s; opacity: 0.3; }

@keyframes heart-float-up {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  5% { opacity: 0.35; }
  95% { opacity: 0.2; }
  100% {
    transform: translateY(-100vh) rotate(15deg);
    opacity: 0;
  }
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(15,10,18,0.3) 0%, transparent 40%),
    linear-gradient(0deg, rgba(30,15,35,0.5) 0%, transparent 30%);
  pointer-events: none;
  z-index: 2;
}

/* ----- Proposal scene: character walks in & kneels ----- */
.proposal-scene {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.character {
  position: absolute;
  bottom: 18%;
  left: -120px;
  width: 80px;
  height: 140px;
  transition: left 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: left, transform;
}

.character.character--walk-in {
  left: 50%;
  transform: translateX(-50%);
}

.character.character--kneel {
  left: 50%;
  transform: translateX(-50%) translateY(28px) scale(0.92);
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.character__figure {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(80, 40, 50, 0.35));
}

.character__head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4a354a 0%, #2a1f2b 100%);
  box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3), 0 0 15px rgba(120, 60, 90, 0.2);
}

.character--girl .character__head { width: 30px; height: 30px; }

.character__body {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px 12px 20px 20px;
  background: linear-gradient(160deg, #4a354a 0%, #2a1f2b 100%);
  box-shadow: inset 0 4px 8px rgba(255,255,255,0.06), 0 0 20px rgba(80, 40, 70, 0.15);
}

.character--boy .character__body {
  width: 36px;
  height: 52px;
  border-radius: 10px 10px 14px 14px;
}

.character--girl .character__body {
  width: 42px;
  height: 56px;
  border-radius: 14px 14px 22px 22px;
  top: 34px;
}

.character__arm {
  position: absolute;
  top: 42px;
  right: -18px;
  width: 28px;
  height: 10px;
  background: linear-gradient(90deg, #3d2c3e 0%, #2a1f2b 100%);
  border-radius: 0 6px 6px 0;
  transform-origin: left center;
  transform: rotate(-25deg) scale(0.9);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.character--girl .character__arm { top: 40px; right: -20px; width: 26px; }

.character--kneel .character__arm {
  transform: rotate(-5deg) scale(1.05) translateX(4px);
}

.character__bouquet {
  position: absolute;
  top: -14px;
  right: -22px;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.character__legs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.character--boy .character__legs {
  width: 28px;
  height: 38px;
}

.character--girl .character__legs {
  width: 36px;
  height: 34px;
}

.character__leg {
  background: linear-gradient(180deg, #3d2c3e 0%, #2a1f2b 100%);
  border-radius: 6px 6px 0 0;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.05);
}

.character--boy .character__leg {
  width: 10px;
  height: 100%;
}

.character--girl .character__leg {
  width: 14px;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.character--kneel .character__legs {
  transform: translateX(-50%) translateY(12px) scaleY(0.6);
  opacity: 0.7;
}

.character.character--kneel::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 100px;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 80% 100%, rgba(232, 160, 168, 0.25) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.reveal-content--hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.reveal-content.reveal-content--visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal-content {
  position: relative;
  z-index: 5;
  max-width: 560px;
  padding: 2rem;
}

.reveal-content--visible .bouquet-display {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-content--visible .reveal-name {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.reveal-content--visible .reveal-sub {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.reveal-content--visible .reveal-message {
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.reveal-content--visible .reveal-from {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bouquet-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  min-height: 90px;
}

.bouquet-display .flower-item {
  border-radius: 16px;
  overflow: visible;
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 20px rgba(180, 80, 100, 0.15);
}

.bouquet-display .flower-item--emoji {
  font-size: 3.2rem;
  line-height: 1;
  min-width: 72px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: bouquet-float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(217, 106, 122, 0.25));
}

.bouquet-display .flower-item--emoji:nth-child(odd) { animation-delay: 0.2s; }
.bouquet-display .flower-item--emoji:nth-child(3n) { animation-delay: 0.5s; }
.bouquet-display .flower-item--emoji:nth-child(4n) { animation-delay: 0.8s; }
.bouquet-display .flower-item--emoji:nth-child(5n) { animation-delay: 0.3s; }

@keyframes bouquet-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.08); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 40px rgba(217, 106, 122, 0.4), 0 2px 20px rgba(0,0,0,0.3);
}

.reveal-sub {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reveal-message {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text);
  background: rgba(28, 20, 36, 0.75);
  backdrop-filter: blur(16px);
  padding: 1.6rem 1.9rem;
  border-radius: 24px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-glow);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 40px rgba(180, 80, 100, 0.1);
}

.reveal-from {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ----- Accept / Reject ----- */
.response-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.75rem;
  min-height: 52px;
}

.response-buttons--hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.response-buttons--visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.btn-accept {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-hot) 50%, var(--rose) 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(180, 80, 100, 0.45), 0 0 30px rgba(217, 106, 122, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accept:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(180, 80, 100, 0.5), 0 0 40px rgba(217, 106, 122, 0.25);
}

.btn-reject {
  position: fixed;
  left: 58%;
  top: 55%;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(180, 140, 160, 0.5);
  border-radius: 999px;
  background: rgba(45, 35, 55, 0.9);
  color: #e8d8e8;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: left 0.2s ease-out, top 0.2s ease-out, background 0.2s, color 0.2s;
  z-index: 20;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

.btn-reject:hover {
  background: rgba(60, 45, 70, 0.95);
  color: #f0e6f0;
}

/* ----- Love screen (after Accept) — night mode, romantic ----- */
.love-screen {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: auto;
  transition: opacity 0.8s ease;
  color: #f5e6f0;
}

.love-screen--hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.love-screen--visible {
  opacity: 1;
  visibility: visible;
  animation: loveScreenIn 1.2s ease-out;
}

@keyframes loveScreenIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.love-screen__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(80, 50, 90, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(120, 60, 100, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #0d0a14 0%, #1a1225 25%, #251a35 50%, #1e1528 75%, #120d1a 100%);
  z-index: 0;
}

.love-screen__moon {
  position: absolute;
  top: 12%;
  right: 15%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5f0e8, #e8e0d0 40%, #c9b896 70%);
  box-shadow: 
    0 0 60px 20px rgba(255, 235, 220, 0.25),
    0 0 120px 40px rgba(255, 240, 230, 0.12),
    inset -8px -8px 20px rgba(255, 255, 255, 0.4);
  animation: moonGlow 6s ease-in-out infinite;
}

@keyframes moonGlow {
  0%, 100% { opacity: 0.95; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.love-screen__stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.love-screen__stars .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 2s ease-in-out infinite;
}

.love-screen__stars .star--big {
  width: 3px;
  height: 3px;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.6);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.love-screen__couple {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(255, 200, 220, 0.3));
  animation: coupleFloat 4s ease-in-out infinite;
}

@keyframes coupleFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.love-screen__title {
  position: relative;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 14vw, 6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
  text-shadow: 
    0 0 30px rgba(255, 180, 200, 0.5),
    0 0 60px rgba(255, 150, 180, 0.3),
    0 2px 20px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.love-screen__quote {
  position: relative;
  z-index: 3;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255, 220, 235, 0.9);
  font-style: italic;
  max-width: 320px;
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.5;
}

.love-screen__sub {
  position: relative;
  z-index: 3;
  font-size: 1.35rem;
  color: rgba(255, 230, 245, 0.95);
  font-style: italic;
  margin: 0;
}

.music-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  background: rgba(28, 20, 36, 0.8);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.music-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(217, 106, 122, 0.3);
}

.music-toggle.playing {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-hot));
  border-color: var(--rose-hot);
  box-shadow: 0 0 24px rgba(217, 106, 122, 0.4);
}

.music-hint {
  position: fixed;
  bottom: 1.5rem;
  right: 5rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  z-index: 9;
  pointer-events: none;
  animation: fadeIn 1s ease 2s both;
  letter-spacing: 0.03em;
}

.music-hint.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 480px) {
  .proposal-form { padding: 1.5rem; }
  .flower-grid { grid-template-columns: repeat(4, 1fr); }
  .link-box { flex-direction: column; }
}
