body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #0a0f24;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease-in-out;
}

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

canvas#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  padding: 2rem;
  text-align: center;
  background: rgba(10, 15, 36, 0.85);
  border-radius: 16px;
  max-width: 420px;
  margin: 2rem;
  box-shadow: 0 0 25px #38bdf8;
  backdrop-filter: blur(6px);
  animation: fadeUp 1.5s ease-in-out;
}

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

h1 {
  margin-bottom: 1.2rem;
  color: #38bdf8;
  font-size: 1.8rem;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

li {
  margin: 0.6rem 0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #e0f2fe;
}

#location {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #93c5fd;
}

#hijriDate {
  margin-top: 1rem;
  font-style: italic;
  color: #cbd5e1;
}