/* 🌌 Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Quicksand:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #0b0020, #1a0033);
  color: #f0eaff;
  overflow-x: hidden;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

/* 🌟 Header */
header {
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #e6b3ff;
  text-shadow: 0 0 12px #a56fff;
  animation: fadeIn 2s ease-in;
}

/* 🌙 Main Content Box */
.main {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(40, 20, 60, 0.7);
  border-radius: 16px;
  box-shadow: 0 0 25px #a56fff;
  text-align: center;
  animation: floatUp 1.5s ease-out;
}

/* ✨ Headings */
h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ffcaff;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #ff99ff;
}

/* 💫 Buttons */
button, .btn {
  background: linear-gradient(to right, #a56fff, #ff99ff);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px #ff99ff;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ffccff;
}

/* 🌌 Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #aaaaff;
}

/* 🌟 Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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