:root { --background:#0b1220; --foreground:#e5e7eb; --accent:#a78bfa; --primary:#0ea5e9; --primary-foreground:#ffffff; }
.bg-background { background-color: var(--background); }
.hero-gradient { background: radial-gradient(1200px 800px at 50% -20%, rgba(255,255,255,0.06), transparent), linear-gradient(180deg, 
rgba(14,165,233,0.18), rgba(10,10,10,0)); }
html { scroll-behavior: smooth; }
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}