@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap');

:root{
  --bg:#000;
  --fg:#fff;
  --muted:#b3b3b3;
  --accent:#ffffff;
}

body{
  background:var(--bg) url('/theme/background-stars.png') center/cover fixed no-repeat;
  color:var(--fg);
  font-family: 'Mulish', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0.01em;
}

a{
  color:var(--fg);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.3);
}

.header, header{
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}

.card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}

/* Admin pages: ensure select dropdowns have visible text on light background */
.bg-gray-50 select,
.bg-gray-50 select option {
  background-color: #fff !important;
  color: #111827 !important;
}
