/* Fortnite vriendengroep-stats — donker glassmorphism-thema. Mobile-first. */

@font-face {
  font-family: 'Geist';
  src: url('/fonts/Geist-Variable.woff2') format('woff2-variations'), url('/fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Pas deze ene variabele aan om de accentkleur van de hele site te veranderen. */
  --accent: #7c5cff;

  --accent-soft: color-mix(in oklab, var(--accent) 22%, transparent);
  --accent-line: color-mix(in oklab, var(--accent) 55%, transparent);
  --bg-1: #07080f;
  --bg-2: #111427;
  --bg-3: #1b1036;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f3f4f8;
  --text-2: #b7bbcc;
  --text-3: #8a8fa6;
  --good: #34d399;
  --bad: #f87171;
  --warn: #fbbf24;
  --radius: 18px;
  --radius-sm: 12px;
  --tap: 44px;
  --maxw: 1100px;
  --blur: blur(18px) saturate(140%);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  background-color: var(--bg-1);
  overflow-x: hidden;
}

/* Achtergrond als vaste laag (background-attachment: fixed werkt niet op iOS) */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 10% -10%, color-mix(in oklab, var(--accent) 28%, transparent), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(34, 211, 238, 0.12), transparent 60%),
    linear-gradient(160deg, var(--bg-2) 0%, var(--bg-1) 55%, var(--bg-3) 120%);
}

a { color: inherit; }
.num, table, .stat-value, .hero-value { font-variant-numeric: tabular-nums; }
.muted { color: var(--text-2); }
.faint { color: var(--text-3); }
.small { font-size: 13px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
main.wrap { padding-bottom: 48px; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  background: rgba(7, 8, 15, 0.55);
  border-bottom: 1px solid var(--border);
}
.topbar .wrap { display: flex; align-items: center; gap: 12px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; letter-spacing: -0.01em; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 50%, #22d3ee));
  box-shadow: 0 6px 20px var(--accent-soft); font-size: 17px;
}
.nav { margin-left: auto; display: flex; gap: 4px; }
.nav a {
  min-height: var(--tap); display: inline-flex; align-items: center; padding: 0 12px;
  border-radius: 12px; text-decoration: none; color: var(--text-2); font-weight: 500;
}
.nav a:hover { color: var(--text); background: var(--glass); }
.nav a[aria-current='page'] { color: var(--text); background: var(--glass-strong); }

.page-head { margin: 22px 0 14px; }
.page-head h1 { font-size: 26px; line-height: 1.15; margin: 0 0 4px; letter-spacing: -0.02em; }
.page-head p { margin: 0; color: var(--text-2); }

/* ---------- Glass-kaarten ---------- */
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 16px;
  min-width: 0;
}
.card h2 { font-size: 16px; margin: 0 0 12px; letter-spacing: -0.01em; }
.card + .card, .section + .section { margin-top: 14px; }
.section { margin-top: 18px; }
.section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin: 22px 0 10px; }
.section-title h2 { font-size: 18px; margin: 0; }

.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: 1fr; }
.hero-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-head h1 { font-size: 32px; }
}

/* ---------- Segment / chips / knoppen ---------- */
.segment {
  display: flex; gap: 4px; padding: 4px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.segment::-webkit-scrollbar { display: none; }
.segment button {
  flex: 1 0 auto; min-height: var(--tap); padding: 0 14px; border: 0; border-radius: 10px;
  background: transparent; color: var(--text-2); font: inherit; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.segment button[aria-pressed='true'] { background: var(--glass-strong); color: var(--text); box-shadow: inset 0 0 0 1px var(--border-strong); }

.toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 12px 0; }
.chips { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; max-width: 100%; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  min-height: var(--tap); padding: 0 14px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03); color: var(--text-2); font: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.chip[aria-pressed='true'] { color: var(--text); border-color: var(--accent-line); background: var(--accent-soft); }
.chip-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 2px; align-self: center; }

.btn {
  min-height: var(--tap); padding: 0 16px; border-radius: 12px; border: 1px solid var(--border-strong);
  background: var(--glass-strong); color: var(--text); font: inherit; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none;
}
.btn:hover { border-color: var(--accent-line); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--accent); border-color: transparent; color: #fff; box-shadow: 0 8px 24px var(--accent-soft); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-danger { color: #fecaca; border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); }
.btn-ghost { background: transparent; }
.btn-sm { min-height: var(--tap); padding: 0 12px; font-size: 14px; }

/* ---------- Hero-kaartjes ---------- */
.hero { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8px; text-decoration: none; }
.hero::after {
  content: ''; position: absolute; inset: auto -30% -60% auto; width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%); pointer-events: none;
}
.hero-label { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hero-who { display: flex; align-items: center; gap: 8px; min-width: 0; font-weight: 600; }
.hero-who span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-value { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.hero-value small { font-size: 12px; font-weight: 500; color: var(--text-2); letter-spacing: 0; margin-left: 4px; }
.hero-empty { color: var(--text-3); font-size: 14px; }

/* ---------- Avatar ---------- */
.avatar {
  --c: var(--accent);
  flex: none; width: 32px; height: 32px; border-radius: 50%; display: inline-grid; place-items: center;
  font-weight: 700; font-size: 14px; color: #0b0b12;
  background: var(--c);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), 0 4px 14px color-mix(in oklab, var(--c) 35%, transparent);
}
.avatar.lg { width: 56px; height: 56px; font-size: 22px; }
.avatar.sm { width: 24px; height: 24px; font-size: 11px; }

/* ---------- Leaderboard-tabel (desktop) / lijst (mobiel) ---------- */
.lb { width: 100%; border-collapse: collapse; }
.lb th, .lb td { padding: 10px 8px; text-align: right; white-space: nowrap; }
.lb th:first-child, .lb td:first-child { text-align: center; width: 44px; }
.lb th:nth-child(2), .lb td:nth-child(2) { text-align: left; width: 100%; }
.lb thead th { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.lb thead button {
  all: unset; cursor: pointer; min-height: var(--tap); display: inline-flex; align-items: center; gap: 4px; padding: 0 4px; border-radius: 8px;
}
.lb thead button:focus-visible { outline: 2px solid var(--accent); }
.lb thead th[aria-sort] button { color: var(--text); }
.lb tbody tr { border-top: 1px solid var(--border); }
.lb tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.lb .who { display: flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; min-height: var(--tap); }
.lb .who .name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; }
.lb .sorted { color: var(--text); font-weight: 700; }
.rank { font-size: 18px; font-weight: 700; color: var(--text-2); }

.lb-list { list-style: none; margin: 0; padding: 0; }
.lb-item { border-top: 1px solid var(--border); }
.lb-item:first-child { border-top: 0; }
.lb-item a {
  display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 10px; align-items: center;
  padding: 10px 2px; text-decoration: none; min-height: 60px;
}
.lb-item .main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.lb-item .name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-item .sub { font-size: 12.5px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-item .metric { text-align: right; }
.lb-item .metric b { display: block; font-size: 18px; }
.lb-item .metric span { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }

.lb-desktop { display: none; }
@media (min-width: 760px) {
  .lb-desktop { display: table; }
  .lb-mobile, .sort-chips { display: none !important; }
}

.trend { font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 2px; min-width: 28px; justify-content: flex-end; }
.trend.up { color: var(--good); }
.trend.down { color: var(--bad); }
.trend.same { color: var(--text-3); }

.badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 999px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--border); background: rgba(255, 255, 255, 0.04); color: var(--text-2); white-space: nowrap;
}
.badge.warn { color: #fde68a; border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.08); }
.badge.bad { color: #fecaca; border-color: rgba(248, 113, 113, 0.35); background: rgba(248, 113, 113, 0.08); }
.badge.good { color: #a7f3d0; border-color: rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.08); }
.badge.accent { color: var(--text); border-color: var(--accent-line); background: var(--accent-soft); }

/* ---------- Stat-tegels ---------- */
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 560px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat { padding: 12px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.035); border: 1px solid var(--border); min-width: 0; }
.stat-label { font-size: 12px; color: var(--text-2); }
.stat-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }

.period-tabs { margin-bottom: 12px; }

/* ---------- Spelerkop ---------- */
.player-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.player-head h1 { margin: 0; font-size: 26px; letter-spacing: -0.02em; }
.player-head .actions { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

/* ---------- Grafieken ---------- */
.chart-box { position: relative; height: 220px; width: 100%; }
@media (min-width: 760px) { .chart-box { height: 280px; max-height: 300px; } }
.legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }

/* ---------- Tijdlijn (match history) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--border); border-radius: 2px; }
.tl-day { margin: 16px 0 8px 32px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); }
.tl-day:first-child { margin-top: 0; }
.tl-item { position: relative; padding-left: 32px; margin-bottom: 10px; }
.tl-dot { position: absolute; left: 5px; top: 18px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--text-3); }
.tl-item.win .tl-dot { border-color: var(--warn); background: color-mix(in oklab, var(--warn) 40%, var(--bg-2)); }
.tl-card { padding: 12px 14px; }
.tl-top { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.tl-time { font-weight: 600; }
.tl-stats { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 6px; color: var(--text-2); font-size: 14px; }
.tl-stats b { color: var(--text); }

/* ---------- Formulieren ---------- */
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
input[type='text'], input[type='password'], select {
  width: 100%; min-height: var(--tap); padding: 0 12px; border-radius: 12px; border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.25); color: var(--text); font: inherit; font-size: 16px;
}
input[type='color'] { width: var(--tap); height: var(--tap); padding: 2px; border-radius: 12px; border: 1px solid var(--border-strong); background: transparent; }
input:focus, select:focus { outline: 2px solid var(--accent-line); outline-offset: 1px; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 2fr 1fr 2fr auto; align-items: end; } .form-row .field { margin-bottom: 0; } }

.notice { border-radius: var(--radius-sm); padding: 12px 14px; border: 1px solid var(--border); background: rgba(255, 255, 255, 0.04); }
.notice + .notice { margin-top: 8px; }
.notice.error { border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); }
.notice.warn { border-color: rgba(251, 191, 36, 0.4); background: rgba(251, 191, 36, 0.07); }
.notice.ok { border-color: rgba(52, 211, 153, 0.4); background: rgba(52, 211, 153, 0.07); }
.notice strong { display: block; margin-bottom: 2px; }
.notice ol { margin: 6px 0 0; padding-left: 20px; }

.admin-list { list-style: none; padding: 0; margin: 0; }
.admin-item { display: grid; gap: 10px; padding: 12px 0; border-top: 1px solid var(--border); }
.admin-item:first-child { border-top: 0; }
.admin-item .top { display: flex; align-items: center; gap: 10px; min-width: 0; }
.admin-item .top > div { min-width: 0; }
.admin-item .name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-item .btns { display: flex; flex-wrap: wrap; gap: 6px; }
.admin-item.inactive { opacity: 0.6; }
@media (min-width: 760px) { .admin-item { grid-template-columns: minmax(0, 1fr) auto; align-items: center; } }

/* ---------- Vergelijken ---------- */
.vs-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 8px; align-items: center; }
.vs-row { display: contents; }
.vs-row > div { padding: 10px 0; border-top: 1px solid var(--border); }
.vs-row .l { text-align: right; }
.vs-row .m { text-align: center; color: var(--text-3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding-left: 8px; padding-right: 8px; }
.vs-row .win { color: var(--good); font-weight: 700; }
.vs-pickers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- Diversen ---------- */
.empty { text-align: center; padding: 28px 12px; color: var(--text-2); }
.empty .big { font-size: 34px; display: block; margin-bottom: 6px; }
.skeleton { background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.09), rgba(255,255,255,.04)); background-size: 200% 100%; animation: sk 1.2s infinite; border-radius: 12px; min-height: 60px; }
@keyframes sk { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .skeleton { animation: none; } }

.footer { margin-top: 32px; padding: 20px 0 32px; color: var(--text-3); font-size: 13px; border-top: 1px solid var(--border); }

.overlay {
  position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 16px;
  background: rgba(4, 5, 10, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.overlay .card { width: 100%; max-width: 380px; }

.toast {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 60; max-width: calc(100% - 32px);
  padding: 12px 16px; border-radius: 14px; background: rgba(20, 22, 40, 0.92); border: 1px solid var(--border-strong);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.spacer { flex: 1; }
.week-nav { display: flex; align-items: center; gap: 8px; }

/* Grafiekkleuren: accent = wins/K/D, neutrale tint = matches */
:root { --series-matches: rgba(183, 187, 204, 0.38); --series-b: #22d3ee; }
.timeline.is-empty::before { display: none; }

/* ---------- Correcties na visuele test ---------- */
.hero-grid > .card, .grid > .card { margin-top: 0; }
.footer.wrap { padding: 20px 16px 32px; }
.brand { min-height: var(--tap); }
.lb-item .sub { display: block; }
.lb-item .metric { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.lb-item .metric b { line-height: 1.1; }
.vs-grid a.row { min-height: var(--tap); }
@media (max-width: 520px) {
  .brand-text { display: none; }
  .topbar .wrap { gap: 8px; }
  .nav { gap: 2px; }
  .nav a { padding: 0 10px; font-size: 14px; }
}
@media (max-width: 520px) {
  .segment button { flex: 1 1 0; padding: 0 6px; font-size: 13.5px; }
}
.tl-extra { margin-top: 4px; }
.stat-value small { font-size: 12px; font-weight: 500; }
@media (min-width: 560px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.toolbar .chips { flex-wrap: wrap; overflow: visible; }
.table-scroll { overflow-x: auto; margin: 0 -4px; }
.modes-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.modes-table th, .modes-table td { padding: 10px 6px; text-align: right; white-space: nowrap; border-top: 1px solid var(--border); }
.modes-table thead th { border-top: 0; font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.modes-table th:first-child { text-align: left; }
.modes-table tbody th { font-weight: 600; }

/* ---------- PWA ---------- */
.brand-mark { display: block; background: none; box-shadow: 0 6px 20px var(--accent-soft); border-radius: 9px; }
.topbar { padding-top: env(safe-area-inset-top); }
.topbar .wrap, main.wrap, .footer.wrap { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
.footer.wrap { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
.install-btn {
  flex: none; min-height: var(--tap); min-width: var(--tap); padding: 0 12px; margin-left: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 12px; border: 1px solid var(--accent-line); background: var(--accent-soft);
  color: var(--text); font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
}
.install-btn:hover { background: color-mix(in oklab, var(--accent) 35%, transparent); }
@media (max-width: 520px) {
  .install-btn { padding: 0; }
  .install-btn span { display: none; }
}
.install-banner {
  position: fixed; z-index: 40; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
  max-width: 520px; margin: 0 auto; display: flex; align-items: center; gap: 12px; padding: 12px;
  border-radius: 18px; border: 1px solid var(--border-strong);
  background: rgba(17, 20, 39, 0.88); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: rise 0.35s ease-out;
}
.install-banner img { border-radius: 12px; flex: none; }
.install-banner .txt { flex: 1; min-width: 0; display: grid; gap: 2px; font-size: 13px; color: var(--text-2); }
.install-banner .txt strong { color: var(--text); font-size: 15px; }
.install-banner .close {
  flex: none; width: var(--tap); height: var(--tap); border: 0; border-radius: 12px; background: transparent;
  color: var(--text-3); font-size: 16px; cursor: pointer;
}
.install-banner .close:hover { color: var(--text); background: var(--glass); }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .install-banner { animation: none; } }
.toast-action { display: flex; align-items: center; gap: 12px; }
.ios-help { text-align: center; }
.ios-help img { border-radius: 16px; }
.ios-help h2 { margin: 10px 0 8px; }
.ios-help ol { text-align: left; margin: 0 0 12px; padding-left: 22px; line-height: 1.9; }
.ios-help svg { vertical-align: -3px; }
/* geïnstalleerde app: iets meer ruimte bovenin, geen "installeer"-UI */
.standalone .install-btn, .standalone .install-banner { display: none !important; }
