:root {
  --ink: #1a1a1a;
  --bg: #ffe14d;
  --white: #ffffff;
  --pink: #ff2e97;
  --blue: #3a86ff;
  --orange: #ff8e3c;
  --mint: #00e0b8;
  --purple: #7c5cfc;
  --deep: #5b3fd9;
  --gold: #ffc93c;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --border: 3px solid var(--ink);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(rgba(26, 26, 26, 0.13) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Archivo Black', system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: 0.6px;
  /* Archivo Black place le point du « i/j » très haut (effet « point détaché »).
     Les capitales n'ont pas de point : on garde la police de marque sans le bug. */
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 84px 0; }
.section h2 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 10px; }
.section .lead { font-size: 18px; max-width: 620px; opacity: 0.8; margin-bottom: 38px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.annonces { display: grid; gap: 12px; margin-top: 18px; }
.annonce {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--blue);
  color: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
}
.annonce.feature { background: var(--mint); color: var(--ink); }
.annonce.maintenance { background: var(--gold); color: var(--ink); }
.annonce.alert { background: #ff6b6b; color: var(--white); }
.annonce .emo { font-size: 22px; line-height: 1.2; }
.annonce-body { flex: 1; }
.annonce-body strong { display: block; font-size: 15px; }
.annonce-body p { font-size: 14px; opacity: 0.92; }
.annonce-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 30px;
  padding: 4px 12px;
  font-weight: 800;
  font-size: 13px;
}
.annonce-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
  padding: 3px 5px;
}

.logo {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  /* Contour noir sur les lettres (proportionnel à la taille) ; `paint-order`
     dessine le remplissage APRÈS le tracé pour ne laisser voir que le contour
     extérieur et garder des lettres blanches nettes. */
  -webkit-text-stroke: 0.1em var(--ink);
  paint-order: stroke fill;
  font-family: 'Archivo Black', sans-serif;
  border: var(--border);
  border-width: 3.5px;
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 8px 22px 12px;
  transform: rotate(-3deg);
  letter-spacing: 1px;
}
.logo.sm { font-size: 22px; box-shadow: var(--shadow-sm); padding: 5px 14px 8px; border-width: 3px; }
.tagline {
  display: inline-block;
  background: var(--mint);
  border: var(--border);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 7px 18px;
  font-weight: 800;
  transform: rotate(2deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  background: var(--pink);
  color: var(--white);
  border: 3.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 22px;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.06s ease;
}
.btn:active { transform: translate(3px, 3px); box-shadow: var(--shadow-sm); }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.white { background: var(--white); color: var(--ink); }
.btn.blue { background: var(--blue); }

.card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}
.badge {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  background: var(--ink);
  color: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px 11px;
}
.badge.gold { background: var(--gold); color: var(--ink); }
.badge.pink { background: var(--pink); color: var(--white); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.nav-links { display: flex; gap: 22px; align-items: center; font-weight: 800; }
.nav-links a:hover { color: var(--pink); }
.nav .logo { font-size: 18px; transform: rotate(-3deg); }
@media (max-width: 760px) { .nav-links { display: none; } }

.hero { padding: 70px 0 60px; text-align: center; }
.hero .logo { font-size: clamp(46px, 13vw, 96px); margin-bottom: 26px; }
.hero h1 { font-size: clamp(26px, 4.6vw, 40px); margin: 22px auto 12px; max-width: 760px; }
.hero p { font-size: 19px; max-width: 560px; margin: 0 auto 30px; opacity: 0.82; }
.hero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.emoji-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 44px;
}
.emoji-row span {
  font-size: 30px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  width: 58px; height: 58px;
  display: grid; place-items: center;
}
.emoji-row span:nth-child(even) { transform: rotate(4deg); }
.emoji-row span:nth-child(3n) { transform: rotate(-5deg); }

.store {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--white);
  border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); padding: 10px 18px;
}
.store .glyph { font-size: 26px; }
.store small { display: block; font-size: 11px; opacity: 0.7; font-weight: 700; }
.store strong { font-family: 'Archivo Black', sans-serif; font-size: 17px; }
.store:active { transform: translate(3px, 3px); box-shadow: var(--shadow-sm); }

.grid { display: grid; gap: 18px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.mode { display: flex; gap: 16px; align-items: center; }
.mode .ico {
  width: 56px; height: 56px; flex: none;
  display: grid; place-items: center; font-size: 28px;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: 14px;
}
.mode h3 { font-size: 19px; }

.game { position: relative; display: flex; flex-direction: column; gap: 8px; }
.game .head { display: flex; align-items: center; gap: 12px; }
.game .ico {
  width: 50px; height: 50px; flex: none;
  display: grid; place-items: center; font-size: 26px;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: 13px;
}
.game h3 { font-size: 17px; }
.game .sub { font-weight: 800; font-size: 13px; opacity: 0.7; }
.game .rule { font-size: 14px; opacity: 0.85; }
.game .tag { position: absolute; top: -10px; right: -8px; transform: rotate(6deg); }

.t-pink { background: var(--pink); color: var(--white); }
.t-blue { background: var(--blue); color: var(--white); }
.t-mint { background: var(--mint); }
.t-orange { background: var(--orange); }
.t-purple { background: var(--purple); color: var(--white); }
.t-gold { background: var(--gold); }
.t-pink .sub, .t-blue .sub, .t-purple .sub,
.t-pink .rule, .t-blue .rule, .t-purple .rule { opacity: 0.9; }

.plans { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.plan { width: min(320px, 100%); }
.plan.hot { background: var(--pink); color: var(--white); box-shadow: 7px 7px 0 var(--gold); }
.plan .price { font-family: 'Archivo Black', sans-serif; font-size: 34px; margin: 6px 0; }
.plan ul { list-style: none; margin: 14px 0; }
.plan li { padding: 6px 0; display: flex; gap: 9px; }

.steps { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step .n {
  font-family: 'Archivo Black', sans-serif; font-size: 20px;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--gold); border: 2.5px solid var(--ink); border-radius: 12px;
  margin-bottom: 12px;
}

.footer { border-top: var(--border); background: var(--ink); color: var(--white); padding: 48px 0 30px; }
.footer a:hover { color: var(--gold); }
.footer .cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer h4 { font-family: 'Archivo Black', sans-serif; font-size: 14px; margin-bottom: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; }
.footer ul { list-style: none; }
.footer li { padding: 4px 0; opacity: 0.85; }
.footer .copy { margin-top: 34px; opacity: 0.6; font-size: 13px; }

.legal-wrap { padding: 40px 0 70px; }
.legal-wrap .card { max-width: 820px; margin: 22px auto 0; }
.legal-wrap h1 { font-size: clamp(26px, 5vw, 40px); }
.legal-wrap .updated { opacity: 0.6; font-size: 13px; margin-top: 6px; }
.legal-wrap section { margin-bottom: 22px; }
.legal-wrap section h3 { font-size: 16px; margin-bottom: 5px; font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; text-transform: none; letter-spacing: normal; }
.legal-wrap section p { opacity: 0.85; }
.legal-wrap .disclaimer { opacity: 0.55; font-size: 13px; margin-top: 18px; }
.back { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; margin-bottom: 6px; }

.legal-wrap section ul { margin: 8px 0 8px 22px; opacity: 0.85; }
.legal-wrap section li { margin: 4px 0; }
.legal-wrap section p + p { margin-top: 10px; }
.legal-wrap section a { text-decoration: underline; }
.legal-wrap .lead-in { opacity: 0.85; margin-bottom: 20px; }

.legal-note {
  background: #fff8db;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
  margin: 18px 0;
  font-size: 14px;
}
.legal-note strong { font-weight: 800; }

.ph {
  background: #ffe14d;
  border: 1.5px dashed var(--ink);
  border-radius: 6px;
  padding: 0 6px;
  font-weight: 800;
  white-space: nowrap;
}
