:root {
  --bg: #0f1011;
  --border: #2a2d30;
  --free-bg: #0f1612;
  --free-border: #2a5a3a;
  --taken-bg: #1a1111;
  --taken-border: #5a2a28;
  --accent: #52ae32;
  --card-bg: #17191b;
  --lgray: #1f2225;
  --gray: #b3b1ae;
  --promo: #ff6b63;
  --text: #f4f1f1;
  --logo-url: url('/img/logo_white.svg');
}

@media (prefers-color-scheme: dark) {
  :root[data-theme="system"] {
    --bg: #0f1011;
    --border: #2a2d30;
    --free-bg: #0f1612;
    --free-border: #2a5a3a;
    --taken-bg: #1a1111;
    --taken-border: #5a2a28;
    --accent: #52ae32;
    --card-bg: #17191b;
    --lgray: #1f2225;
    --gray: #b3b1ae;
    --promo: #ff6b63;
    --text: #f4f1f1;
    --logo-url: url('/img/logo_white.svg');
  }
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 14px system-ui, Segoe UI, Roboto, Arial;
  margin: 0;
  padding: 16px;
}

/* Links â€“ global vereinheitlicht */
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; }

.brand {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.logo {
  display: inline-block;
  height: 118px;
  aspect-ratio: 160 / 136;  /* orig. grÃ¶ÃŸe, hÃ¶he Ã¤ndern reicht, breite wird automatisch berechnet */
  background-image: var(--logo-url);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.host {
  color: var(--accent);
  text-decoration: none;
}

.footer {
  color: var(--gray);
  font-size: 12px;
  margin-top: 12px;
  padding: 12px 0;
  text-align: center;
}

.site-footer .legal{
  display: block; 
  width: 100%;
  text-align: left;
}