:root {
  --bg-primary: #0d0d0d;
  --bg-surface: #1a1a1a;
  --bg-elevated: #252525;
  --color-gold: #c9b037;
  --color-orange: #cc6600;
  --color-red: #8b0000;
  --color-text: #d4d4d4;
  --color-muted: #666666;
  --color-fog: rgba(13, 13, 13, 0.7);
  --font-display: 'Cinzel', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 6px;
  --transition: 200ms ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background: var(--bg-primary);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
}

a {
  color: var(--color-gold);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: var(--color-text);
  background: var(--bg-primary);
  border: 1px solid var(--color-muted);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-muted);
}
