*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:#1E1528;
  --bg2:#261A35;
  --bg3:#2E2040;
  --border:#4A3866;
  --accent:#7B5EA7;
  --accent2:#A593C2;
  --gold:#C9A96E;
  --text:#EDE8F5;
  --text-mid:#C4B8D8;
  --text-dim:#9B8FB5;
  --dark:#130E1C;
}
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
}
nav {
  background: rgba(19, 14, 28, 0.97);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent2);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--text) !important;
  padding: 0.35rem 1rem;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--accent2) !important;
  color: var(--dark) !important;
}
.toast {
  background: var(--accent);
  color: var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 200;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
}
