    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --accent:     #16787c;
      --accent-light:#e4f3ef;
      --bg:         #f9f5ed;
      --surface:    #ffffff;
      --surface-soft:#f3ecdd;
      --border:     #ddd3c0;
      --text:       #183b56;
      --text-muted: #5b6f80;
      --radius:     12px;
      --radius-sm:  8px;
      --shadow:     0 1px 2px rgba(15,35,58,.05), 0 12px 28px rgba(15,35,58,.06);
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: linear-gradient(180deg, #f3ecdd 0, var(--bg) 280px);
      color: var(--text);
      font-size: 14px;
      line-height: 1.65;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      min-height: 100dvh;
    }
    .content {
      flex: 1;
      max-width: 800px;
      margin: 32px auto;
      padding: 0 16px 40px;
      width: 100%;
    }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-top: 3px solid #59b7c6;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 36px;
      margin-bottom: 20px;
    }
    h2 { font-size: 18px; font-weight: 700; color: #116366; margin-bottom: 12px; }
    h3 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; }
    p { margin-bottom: 12px; }
    .kammer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .kammer-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: #fbfdfe;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 13px;
    }
    .kammer-item a { color: #116366; text-decoration: none; }
    .kammer-item a:hover { text-decoration: underline; }
    .scraper-dot {
      font-size: 10px;
      line-height: 1;
      flex-shrink: 0;
      cursor: default;
    }
    .scraper-dot.ok    { color: #16a34a; }
    .scraper-dot.warn  { color: #dc2626; }
    .scraper-dot.unknown { color: #cbd5e1; }
    .kammer-count {
      font-size: 11px;
      font-weight: 700;
      background: #116366;
      color: #fff;
      border-radius: 999px;
      padding: 1px 7px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .stat-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .stat {
      background: #fbfdfe;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 14px 20px;
      text-align: center;
      flex: 1;
      min-width: 120px;
    }
    .stat-num { font-size: 28px; font-weight: 700; color: #116366; }
    .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
    .stat-note  { font-size: 11px; color: var(--text-muted); margin-top: 1px; opacity: 0.75; }
    #stand-info { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
    .stat-bars {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 10px 0 4px;
    }
    .stat-bars-loading { font-size: 13px; color: var(--text-muted); margin: 0; }
    .stat-bar {
      display: grid;
      grid-template-columns: 170px 1fr 40px;
      align-items: center;
      gap: 12px;
      font-size: 13px;
    }
    .stat-bar-label { color: var(--text); }
    .stat-bar-track {
      background: var(--surface-soft);
      border-radius: 999px;
      height: 14px;
      overflow: hidden;
    }
    .stat-bar-fill {
      height: 100%;
      min-width: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, #59b7c6, #16787c);
    }
    .stat-bar-val { font-weight: 700; color: #116366; text-align: right; }
    .stat-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 16px; }
    footer {
      background: #143452;
      padding: 12px 24px;
      padding-bottom: calc(12px + env(safe-area-inset-bottom));
      text-align: center;
      font-size: 12px;
      color: #7ab8d9;
      flex-shrink: 0;
    }
    footer a { color: #a8c8e0; text-decoration: none; }
    footer a:hover { color: #ffffff; }
    @media (max-width: 600px) {
      .card { padding: 18px 16px; }
      .content { margin: 16px auto; }
      .stat-num { font-size: 22px; }
      .stat-bar { grid-template-columns: 120px 1fr 32px; gap: 8px; font-size: 12px; }
    }
