:root {
  --bg: #0e0b1f;
  --panel: #1c1535;
  --text: #ffffff;
  --muted: #c9c9e8;
  --accent: #7c3aed;
  --accent-2: #6b21a8;
  --accent-glow: rgba(124, 58, 237, 0.35);
}

body {
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  position: relative;
}

/* Subtle energy glow (keep it light) */
body::before {
  content: '';
  position: fixed;
  inset: -10% -10% auto -10%;
  height: 60vh;
  background: radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.25), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.hero {
  height: 100vh;
  background-image: url(bg-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.bg-hero {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.bg-dark-purple {
  background-color: var(--panel);
}

.accordion-item {
  background: #120f27;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-button {
  background: #151235;
  color: var(--text);
}

.accordion-button:not(.collapsed) {
  background-color: #3f1a65;
  color: #ffffff;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(124, 58, 237, 0.35);
}

.accordion-body {
  color: #ffffff;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  background-color: var(--accent-2);
  border-color: var(--accent-2);
}

a { color: #e5ddff; }

h1, h2, h3, h4, h5, .fw-bold {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(124, 58, 237, 0.25);
}

.lead {
  color: var(--muted);
}

footer.bg-black {
  background-color: rgba(0, 0, 0, 0.85) !important;
}

/* Footer links */
.footer-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(124, 58, 237, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.footer-link:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.65);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.footer-button {
  background: rgba(124, 58, 237, 0.25);
}

/* Support modal */
.support-modal {
  background: #151235;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.support-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.support-modal .modal-body a {
  color: #e5ddff;
  text-decoration: none;
}

.support-modal .modal-body a:hover {
  text-decoration: underline;
}
