body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0c0c2c, #1a1a3d);
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 2rem;
  background-color: #222;
  border-bottom: 2px solid #444;
}

h1 {
  font-size: 2.5rem;
  color: #ffcc00;
}

section {
  padding: 2rem;
  border-bottom: 1px solid #333;
}

input[type="password"] {
  padding: 0.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}

button {
  padding: 0.5rem 1rem;
  background-color: #ffcc00;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

#secretContent {
  margin-top: 1rem;
  background-color: #111;
  padding: 1rem;
  border-radius: 8px;
}
.petal {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url('../assets/rose.svg');
  background-size: cover;
  animation: float 10s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}


