:root {
  --bg:         #0f0d1a;
  --bg2:        #171426;
  --surface:    #1b1830;
  --card:       #201c38;
  --border:     #2c2748;
  --accent:     #8b5cf6;
  --accent2:    #38bdf8;
  --text:       #f1eef9;
  --text-muted: #9691b0;
  --success:    #4caf7a;
  --error:      #e05c5c;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
}

h1, h2, h3, .brand-font { font-family: 'Space Grotesk', sans-serif; }

a { color: inherit; }

button { font-family: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.3rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #0f0d1a; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
