body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #f5f7fa, #dbe9f4);
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  position: relative;
  animation: fadeIn 1.5s ease-in;
}

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

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

.subtitle {
  font-size: 1.2rem;
  color: #666;
}

h1, h2 {
  color: #2c3e50;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li::before {
  content: "✨ ";
}

section {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}

/* 🔒 Password Screen */
#password-screen {
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: 5rem auto;
}

#password-input {
  padding: 0.5rem;
  font-size: 1rem;
  width: 80%;
  margin-bottom: 1rem;
}

#password-screen button {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #6c5ce7;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#password-screen button:hover {
  background-color: #5a4bd1;
}

#error-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: red;
}

/* ✨ Floating Affirmations */
.floating-affirmation {
  position: absolute;
  font-size: 1rem;
  color: #6c5ce7;
  animation: float 12s infinite ease-in-out;
  opacity: 0.6;
}

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