body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica';
  color: #ffffff;
  background-color: #e8b1d2;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.fondo {
  background-image: url('https://plus.unsplash.com/premium_photo-1664471481538-17c0f0d8847a?q=80&w=688&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  max-width: 800px;
  margin: 50px auto;
  padding: 2em;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  text-align: center;
}

h1 {
  color: #ffe4e1;
}

button {
  background-color: #f3c6e0;
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1em;
  border-radius: 10px;
  transition: 0.3s;
}

button:hover {
  background-color: #e8b1d2;
}

.oculto {
  display: none;
  color: #fff;
}

#sorpresa {
  margin-top: 2em;
  animation: fadeIn 2s ease-in-out;
}

.flores {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.flores img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.flores img:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
