:root {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --text: #1a1c1e;
  --muted: #5c6370;
  --border: #e3e6ea;
  --accent: #2f6bff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101215;
    --surface: #181b20;
    --text: #e8eaed;
    --muted: #9aa2ae;
    --border: #2a2f36;
    --accent: #6f9aff;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 720px; margin: 0 auto; }

header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.brand {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 20px;
}

.brand:hover { color: var(--accent); }

h1 { font-size: 34px; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.02em; }
h2 { font-size: 21px; margin: 40px 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 17px; margin: 28px 0 8px; }

.updated { color: var(--muted); font-size: 15px; margin: 0; }

p { margin: 0 0 16px; }
ul { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }

a { color: var(--accent); }

strong { font-weight: 600; }

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
}

.callout p:last-child { margin-bottom: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 16px;
}

.table-scroll { overflow-x: auto; }

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th { font-weight: 600; font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* Keep the price column intact — "2,99 €" must not break across lines. */
td:last-child, th:last-child { white-space: nowrap; }

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 15px;
}

footer a { margin-right: 16px; }
