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

body {
  font-family: 'Lato', sans-serif;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.hidden {
  display: none !important;
}

/* =================== */
/* PASSWORD SCREEN     */
/* =================== */
#password-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.5s ease;
  overflow: hidden;
}

/* Login screen particles */
#login-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.login-particle {
  position: absolute;
  opacity: 0;
  animation: floatUpSlow 15s ease-in-out infinite;
}

.login-heart {
  font-size: 20px;
  color: rgba(248, 180, 196, 0.4);
  text-shadow: 0 0 10px rgba(248, 180, 196, 0.3);
}

.login-petal {
  width: 15px;
  height: 22px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.4) 0%, rgba(255, 105, 180, 0.3) 100%);
  border-radius: 50% 50% 50% 50%;
}

@keyframes floatUpSlow {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg) scale(0.5);
  }
  10% {
    opacity: 0.7;
    transform: scale(1);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) rotate(360deg) scale(0.5);
  }
}

/* Login screen decorative flowers */
#login-flowers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.login-flower {
  position: absolute;
  bottom: -20px;
  opacity: 0.15;
  animation: gentleSway 6s ease-in-out infinite;
}

@keyframes gentleSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* Password container */
.password-container {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  animation: containerFloat 6s ease-in-out infinite, fadeInUp 0.8s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

/* Heart icon */
.heart-icon {
  font-size: 3rem;
  color: #f8b4c4;
  margin-bottom: 1rem;
  animation: heartbeat 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(248, 180, 196, 0.5));
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  60% { transform: scale(1); }
}

.password-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #f8b4c4;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(248, 180, 196, 0.3);
}

.password-container > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Custom Date Input */
.date-input-container {
  position: relative;
  display: inline-block;
}

.date-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: text;
}

.date-input-container:focus-within .date-display {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(248, 180, 196, 0.5);
  box-shadow: 0 0 30px rgba(248, 180, 196, 0.2);
}

.date-char {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  width: 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.date-char.filled {
  color: #f8b4c4;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(248, 180, 196, 0.5);
}

.date-char.active {
  color: white;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

.date-separator {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

#password-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: text;
}

/* Unlock button */
#unlock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #f8b4c4 0%, #e891a7 100%);
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(248, 180, 196, 0.3);
}

#unlock-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

#unlock-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 30px rgba(248, 180, 196, 0.5);
}

#unlock-btn:hover svg {
  transform: rotate(-10deg);
}

#unlock-btn:active {
  transform: scale(0.98);
}

#error-msg {
  color: #ff6b6b;
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.5rem;
  animation: none;
}

#error-msg.show {
  animation: shakeError 0.5s ease;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-10px); }
  80% { transform: translateX(10px); }
}

/* =================== */
/* MAIN GARDEN         */
/* =================== */
#garden {
  position: relative;
  width: 100%;
  height: 100vh;
  cursor: crosshair;
  animation: fadeIn 1s ease;
}

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

/* Fireflies */
#fireflies {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.firefly {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #fffacd 0%, #ffd700 40%, transparent 70%);
  border-radius: 50%;
  animation: fireflyFloat 8s ease-in-out infinite, fireflyGlow 2s ease-in-out infinite;
  box-shadow: 0 0 10px 3px rgba(255, 215, 0, 0.4);
}

@keyframes fireflyFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -40px);
  }
  50% {
    transform: translate(-20px, -60px);
  }
  75% {
    transform: translate(40px, -20px);
  }
}

@keyframes fireflyGlow {
  0%, 100% {
    opacity: 0.3;
    box-shadow: 0 0 5px 2px rgba(255, 215, 0, 0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px 5px rgba(255, 215, 0, 0.6);
  }
}

/* Floating Particles (Hearts & Petals) */
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  opacity: 0;
  animation: floatUp 12s ease-in-out infinite;
}

.particle-heart {
  font-size: 16px;
  color: #f8b4c4;
}

.particle-petal {
  width: 12px;
  height: 18px;
  background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
  border-radius: 50% 50% 50% 50%;
  transform: rotate(45deg);
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) rotate(360deg);
  }
}

.header {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #f8b4c4;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Raindrops */
#raindrops {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.raindrop {
  position: absolute;
  top: -20px;
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, transparent, rgba(174, 194, 224, 0.5), rgba(174, 194, 224, 0.2));
  border-radius: 0 0 5px 5px;
  animation: rainfall linear infinite;
}

@keyframes rainfall {
  0% {
    transform: translateY(0) rotate(15deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(15deg);
    opacity: 0;
  }
}

/* Splash effect */
.splash {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(174, 194, 224, 0.3);
  animation: splashAnim 0.4s ease-out forwards;
  pointer-events: none;
}

@keyframes splashAnim {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Music Widget */
.music-widget {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
}

.music-play-btn {
  background: none;
  border: none;
  color: #f8b4c4;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 16px;
  text-align: center;
}

.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.music-bars span {
  width: 4px;
  background: linear-gradient(to top, #f8b4c4, #ff69b4);
  border-radius: 2px;
  animation: musicBar 0.8s ease-in-out infinite;
}

.music-bars span:nth-child(1) {
  height: 8px;
  animation-delay: 0s;
}

.music-bars span:nth-child(2) {
  height: 16px;
  animation-delay: 0.2s;
}

.music-bars span:nth-child(3) {
  height: 12px;
  animation-delay: 0.4s;
}

.music-bars span:nth-child(4) {
  height: 18px;
  animation-delay: 0.6s;
}

@keyframes musicBar {
  0%, 100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

.music-bars.paused span {
  animation-play-state: paused;
}

.music-widget .song-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.music-widget .song-title {
  color: white;
  font-weight: 400;
  font-size: 0.9rem;
}

.music-widget .song-artist {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 300;
}

/* Flower Container */
#flower-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Base Flower Styles */
.flower {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: bottom center;
  animation: growFlower 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  cursor: pointer;
  pointer-events: auto;
}

.flower.grown {
  animation: growFlower 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, sway 4s ease-in-out infinite 1.5s;
}

@keyframes growFlower {
  0% {
    transform: scaleY(0) scaleX(0.5);
    opacity: 0;
  }
  50% {
    transform: scaleY(1.1) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1) scaleX(1);
    opacity: 1;
  }
}

@keyframes sway {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

.flower:hover {
  filter: brightness(1.1);
}

.flower-head {
  position: relative;
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.flower:hover .flower-head {
  transform: scale(1.1);
}

/* =================== */
/* ROSE FLOWER TYPE    */
/* =================== */
.flower-rose .flower-head {
  width: 50px;
  height: 50px;
}

.flower-rose .petal {
  position: absolute;
  width: 22px;
  height: 28px;
  border-radius: 50% 50% 45% 45%;
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
  box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
}

.flower-rose .petal:nth-child(1) { transform: translate(-50%, -90%) rotate(0deg); }
.flower-rose .petal:nth-child(2) { transform: translate(-50%, -90%) rotate(45deg); }
.flower-rose .petal:nth-child(3) { transform: translate(-50%, -90%) rotate(90deg); }
.flower-rose .petal:nth-child(4) { transform: translate(-50%, -90%) rotate(135deg); }
.flower-rose .petal:nth-child(5) { transform: translate(-50%, -90%) rotate(180deg); }
.flower-rose .petal:nth-child(6) { transform: translate(-50%, -90%) rotate(225deg); }
.flower-rose .petal:nth-child(7) { transform: translate(-50%, -90%) rotate(270deg); }
.flower-rose .petal:nth-child(8) { transform: translate(-50%, -90%) rotate(315deg); }

.flower-rose .petal-inner {
  position: absolute;
  width: 14px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
  filter: brightness(0.9);
}

.flower-rose .petal-inner:nth-child(9) { transform: translate(-50%, -70%) rotate(20deg); }
.flower-rose .petal-inner:nth-child(10) { transform: translate(-50%, -70%) rotate(90deg); }
.flower-rose .petal-inner:nth-child(11) { transform: translate(-50%, -70%) rotate(160deg); }
.flower-rose .petal-inner:nth-child(12) { transform: translate(-50%, -70%) rotate(230deg); }
.flower-rose .petal-inner:nth-child(13) { transform: translate(-50%, -70%) rotate(300deg); }

.flower-rose .flower-center {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #8B0000 0%, #5c0000 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =================== */
/* TULIP FLOWER TYPE   */
/* =================== */
.flower-tulip .flower-head {
  width: 40px;
  height: 55px;
}

.flower-tulip .petal {
  position: absolute;
  width: 20px;
  height: 45px;
  border-radius: 50% 50% 30% 30%;
  bottom: 0;
  transform-origin: bottom center;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.15);
}

.flower-tulip .petal:nth-child(1) {
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  z-index: 1;
}

.flower-tulip .petal:nth-child(2) {
  left: 50%;
  transform: translateX(-50%) rotate(15deg);
  z-index: 1;
}

.flower-tulip .petal:nth-child(3) {
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.flower-tulip .flower-center {
  display: none;
}

/* =================== */
/* DAISY FLOWER TYPE   */
/* =================== */
.flower-daisy .flower-head {
  width: 60px;
  height: 60px;
}

.flower-daisy .petal {
  position: absolute;
  width: 10px;
  height: 25px;
  background: white !important;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.05);
}

.flower-daisy .petal:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
.flower-daisy .petal:nth-child(2) { transform: translate(-50%, -100%) rotate(30deg); }
.flower-daisy .petal:nth-child(3) { transform: translate(-50%, -100%) rotate(60deg); }
.flower-daisy .petal:nth-child(4) { transform: translate(-50%, -100%) rotate(90deg); }
.flower-daisy .petal:nth-child(5) { transform: translate(-50%, -100%) rotate(120deg); }
.flower-daisy .petal:nth-child(6) { transform: translate(-50%, -100%) rotate(150deg); }
.flower-daisy .petal:nth-child(7) { transform: translate(-50%, -100%) rotate(180deg); }
.flower-daisy .petal:nth-child(8) { transform: translate(-50%, -100%) rotate(210deg); }
.flower-daisy .petal:nth-child(9) { transform: translate(-50%, -100%) rotate(240deg); }
.flower-daisy .petal:nth-child(10) { transform: translate(-50%, -100%) rotate(270deg); }
.flower-daisy .petal:nth-child(11) { transform: translate(-50%, -100%) rotate(300deg); }
.flower-daisy .petal:nth-child(12) { transform: translate(-50%, -100%) rotate(330deg); }

.flower-daisy .flower-center {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* =================== */
/* SIMPLE FLOWER TYPE  */
/* =================== */
.flower-simple .petal {
  position: absolute;
  width: 24px;
  height: 32px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
}

.flower-simple .petal:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
.flower-simple .petal:nth-child(2) { transform: translate(-50%, -100%) rotate(60deg); }
.flower-simple .petal:nth-child(3) { transform: translate(-50%, -100%) rotate(120deg); }
.flower-simple .petal:nth-child(4) { transform: translate(-50%, -100%) rotate(180deg); }
.flower-simple .petal:nth-child(5) { transform: translate(-50%, -100%) rotate(240deg); }
.flower-simple .petal:nth-child(6) { transform: translate(-50%, -100%) rotate(300deg); }

.flower-simple .flower-center {
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Stem */
.stem {
  width: 6px;
  background: linear-gradient(to right, #228B22, #32CD32, #228B22);
  border-radius: 3px;
  position: relative;
}

.leaf {
  position: absolute;
  width: 30px;
  height: 15px;
  background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
  border-radius: 0 100% 0 100%;
}

.leaf-left {
  left: -25px;
  top: 40px;
  transform: rotate(-30deg);
}

.leaf-right {
  right: -25px;
  top: 70px;
  transform: rotate(30deg) scaleX(-1);
}

/* Flower Colors */
.color-pink .petal { background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%); }
.color-pink .petal-inner { background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%); }

.color-red .petal { background: linear-gradient(135deg, #FF6B6B 0%, #DC143C 100%); }
.color-red .petal-inner { background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%); }

.color-purple .petal { background: linear-gradient(135deg, #DDA0DD 0%, #9370DB 100%); }
.color-purple .petal-inner { background: linear-gradient(135deg, #9370DB 0%, #663399 100%); }

.color-white .petal { background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%); }
.color-white .petal-inner { background: linear-gradient(135deg, #F0F0F0 0%, #E0E0E0 100%); }

.color-coral .petal { background: linear-gradient(135deg, #FFB88C 0%, #FF7F7F 100%); }
.color-coral .petal-inner { background: linear-gradient(135deg, #FF7F7F 0%, #FF6347 100%); }

.color-lavender .petal { background: linear-gradient(135deg, #E6E6FA 0%, #B19CD9 100%); }
.color-lavender .petal-inner { background: linear-gradient(135deg, #B19CD9 0%, #9370DB 100%); }

.color-peach .petal { background: linear-gradient(135deg, #FFDAB9 0%, #FFAB91 100%); }
.color-peach .petal-inner { background: linear-gradient(135deg, #FFAB91 0%, #FF8A65 100%); }

.color-yellow .petal { background: linear-gradient(135deg, #FFF9C4 0%, #FFD54F 100%); }
.color-yellow .petal-inner { background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%); }

/* Message Display */
#message-display {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(5px);
}

.message-content {
  background: linear-gradient(135deg, rgba(40, 40, 60, 0.95) 0%, rgba(30, 30, 50, 0.95) 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  margin: 1rem;
  border: 1px solid rgba(248, 180, 196, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#flower-message {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #f8b4c4;
  line-height: 1.6;
  font-style: italic;
}

#close-message {
  margin-top: 2rem;
  padding: 0.7rem 2.5rem;
  font-size: 0.9rem;
  border: 1px solid rgba(248, 180, 196, 0.5);
  border-radius: 50px;
  background: transparent;
  color: #f8b4c4;
  cursor: pointer;
  transition: all 0.3s ease;
}

#close-message:hover {
  background: rgba(248, 180, 196, 0.1);
  border-color: #f8b4c4;
}

/* Flower Counter */
#flower-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 300;
  z-index: 100;
  pointer-events: none;
}

#count {
  color: #f8b4c4;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 600px) {
  .password-container {
    padding: 2rem;
    margin: 1rem;
  }

  .password-container h1,
  .header h1 {
    font-size: 2.2rem;
  }

  .heart-icon {
    font-size: 2.5rem;
  }

  .date-char {
    font-size: 1.2rem;
    width: 20px;
  }

  .music-widget {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5rem;
  }

  #flower-counter {
    right: 1rem;
    bottom: 1rem;
  }

  .message-content {
    padding: 2rem;
  }

  #flower-message {
    font-size: 1.2rem;
  }
}

/* ===================== */
/* NOTIFY BUTTON         */
/* ===================== */
.notify-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: rgba(248, 180, 196, 0.15);
  border: 1px solid rgba(248, 180, 196, 0.4);
  border-radius: 50px;
  color: #f8b4c4;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 8px 16px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.3s, opacity 0.3s;
  z-index: 100;
  letter-spacing: 0.5px;
}

.notify-btn:hover {
  background: rgba(248, 180, 196, 0.25);
}

.notify-btn.notify-enabled {
  opacity: 0.5;
  cursor: default;
}

.notify-btn:disabled {
  cursor: default;
}
