:root {
  --bg-dark: #0f1115;
  --bg-card: #1a1d23;
  --accent: #d4af37; /* Gold */
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --font-ui: 'Inter', sans-serif;
  --font-quote: 'Playfair Display', serif;
}

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

html {
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #1a1d23, #0f1115);
  background-attachment: fixed;
}

/* Layout: app-shell fills body */
app-shell {
  display: flex;
  flex-direction: column;
  flex: 1;
}
