body {
  margin: 0;
  padding: 0;
  font-family: 'Crimson Pro', serif;
  background: url('images/parchment.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #2e1e1e;
  overflow-x: hidden;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  backdrop-filter: brightness(1.02);
}

.animated-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #6e4f96;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  animation: fadeInDown 2s ease;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  animation: fadeIn 2.5s ease;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 3s ease;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #7e5bef;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s;
}

.btn:hover {
  background-color: #6a48d7;
  transform: scale(1.05);
}

.btn.secondary {
  background-color: #333;
}

#audio-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9999;
  user-select: none;
}

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

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

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