:root {
  --violet: #201047;
  --violet-deep: #12082B;
  --violet-raised: #2D185E;
  --action: #6A4AFD;
  --mint: #49DFC1;
  --penalty: #FF4477;
  --text: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.6);
  --max: 720px;
}

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

body {
  background: var(--violet);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header { padding: 56px 0 40px; }
header .brand { display: flex; align-items: center; gap: 16px; }
header img { width: 56px; height: 56px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12); }
header .brand a { font-size: 30px; color: var(--text); text-decoration: none; }

h1 { font-size: clamp(44px, 9vw, 72px); margin: 40px 0 16px; }
h2 { font-size: 32px; margin: 40px 0 12px; }
h3 { font-size: 24px; margin: 28px 0 8px; color: var(--mint); }

p, li { color: var(--text-soft); margin-bottom: 12px; }
ul { padding-left: 20px; }
li::marker { color: var(--action); }
strong { color: var(--text); font-weight: 600; }
a { color: var(--action); }

.lead { font-size: 20px; color: var(--text); }

.modes { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin: 24px 0 8px; }
.mode { background: var(--violet-raised); border-radius: 16px; padding: 16px 18px; }
.mode .name { font-family: "Bebas Neue", Impact, sans-serif; font-size: 24px; }
.mode .sub { color: var(--text-muted); font-size: 14px; }

.note { background: var(--violet-deep); border-radius: 16px; padding: 20px 22px; margin: 28px 0; }
.note p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.1); vertical-align: top; }
th { color: var(--text); font-weight: 600; }
td { color: var(--text-soft); }

footer { margin: 72px 0 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-size: 14px; }
footer a { margin-right: 18px; }
.updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

/* Page /get — centrée, parce qu'elle n'a qu'une chose à faire faire. */
.get { text-align: center; padding: 24px 0 8px; }
.get h1 { margin: 24px 0 20px; }
.get .lead { margin: 0 auto 40px; max-width: 480px; }
.badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
/* Hauteur égale pour les deux, largeur libre : c'est la règle commune aux
   guidelines d'Apple et de Google, et la seule façon qu'ils se lisent comme une
   paire malgré des artworks de proportions différentes. */
.badges img { display: block; height: 56px; width: auto; }
.hint { color: var(--text-muted); font-size: 15px; margin: 32px auto 0; max-width: 420px; }
