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

:root {
  --bg: #1a2a1a;
  --surface: #2a3a2a;
  --surface2: #3a4a3a;
  --accent: #5c8a3c;
  --accent-hover: #6fa84a;
  --text: #e8f0e8;
  --text-muted: #8aaa8a;
  --danger: #c0392b;
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0,0,0,0.4);
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--accent-hover); text-decoration: none; }
a:hover { text-decoration: underline; }

button {
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  transition: background 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--surface2);
}
.btn-ghost:hover { background: var(--surface2); color: var(--text); }

nav {
  background: var(--surface);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}
nav .brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-hover);
  letter-spacing: 1px;
  flex: 1;
}
nav a { color: var(--text-muted); font-size: 0.95rem; }
nav a:hover { color: var(--text); text-decoration: none; }
