#entreprise{
  scroll-margin-top: 120px;
}   
   
   :root{
      --bg:#0b1220;
      --card:#0f1a33;
      --text:#e9eefc;
      --muted:#b9c4e6;
      --accent:#ffd44a;
      --accent2:#6aa9ff;
      --border: rgba(255,255,255,.10);
      --shadow: 0 18px 40px rgba(0,0,0,.35);
      --radius: 18px;
      --max: 1100px;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:
        radial-gradient(900px 450px at 15% 10%, rgba(255,212,74,.20), transparent 55%),
        radial-gradient(700px 380px at 85% 20%, rgba(106,169,255,.18), transparent 55%),
        linear-gradient(180deg, #081025 0%, #060a14 100%);
      color:var(--text);
      line-height:1.55;
    }
    a{color:inherit}
    .wrap{max-width:var(--max); margin:0 auto; padding: 22px 18px 64px;}
    header{
      position:sticky; top:0; z-index:20;
      backdrop-filter: blur(10px);
      background: rgba(6,10,20,.55);
      border-bottom: 1px solid var(--border);
    }
    .nav{
      max-width:var(--max);
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 18px;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight:800; letter-spacing:.2px;
    }
    .dot{
      width:14px; height:14px; border-radius:50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(255,212,74,.16);
    }
    .links{
      display:flex; gap:14px; flex-wrap:wrap;
      font-size:14px;
      color:var(--muted);
    }
    .links a{ text-decoration:none; padding:8px 10px; border-radius:10px;}
    .links a:hover{ background: rgba(255,255,255,.06); color:var(--text);}

    .hero{
      padding: 34px 0 18px;
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
      align-items:stretch;
    }
    @media (max-width: 900px){
      .hero{grid-template-columns:1fr;}
    }

    .card{
      background: rgba(15,26,51,.72);
      border:1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      color: var(--muted);
      border: 1px solid var(--border);
      background: rgba(255,255,255,.04);
    }
    .badge .mini{
      width:8px; height:8px; border-radius:50%;
      background: var(--accent2);
      box-shadow: 0 0 0 3px rgba(106,169,255,.18);
    }
    h1{
      margin: 12px 0 8px;
      font-size: clamp(28px, 3.2vw, 44px);
      line-height:1.1;
      letter-spacing: -0.6px;
    }
    .sub{
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 16px;
      max-width: 62ch;
    }
    .cta{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top: 10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid var(--border);
      text-decoration:none;
      font-weight: 700;
      font-size: 14px;
      transition: transform .06s ease, background .2s ease;
      background: rgba(255,255,255,.04);
    }
    .btn:hover{ background: rgba(255,255,255,.08); }
    .btn:active{ transform: translateY(1px); }
    .btn.primary{
      background: linear-gradient(135deg, rgba(255,212,74,.95), rgba(255,212,74,.70));
      border-color: rgba(255,212,74,.35);
      color:#1b1400;
    }
    .btn.primary:hover{ background: linear-gradient(135deg, rgba(255,212,74,1), rgba(255,212,74,.80)); }

    .side h3{margin:0 0 10px; font-size:16px;}
    .list{
      margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px;
    }
    .pillrow{
      display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px;
    }
    .pill{
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid var(--border);
      background: rgba(255,255,255,.04);
      font-size: 13px;
      color: var(--muted);
    }

    section{ margin-top: 18px; }
    .grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .col-6{ grid-column: span 6; }
    .col-4{ grid-column: span 4; }
    .col-12{ grid-column: span 12; }
    @media (max-width: 900px){
      .col-6, .col-4{ grid-column: span 12; }
    }
    h2{ margin: 0 0 10px; font-size: 20px; }
    p{ margin: 0 0 10px; color: var(--muted); }

    .steps{
      display:flex; gap:10px; flex-direction:column;
      margin-top: 10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.03);
    }
    .n{
      min-width:28px; height:28px; border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      font-weight:800;
      background: rgba(255,212,74,.18);
      color: var(--accent);
      border: 1px solid rgba(255,212,74,.25);
    }
    .step b{color:var(--text)}
    footer{
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid var(--border);
        color: var(--muted);
        font-size: 13px;
        display:flex;
        flex-wrap:wrap;
        gap:10px;
        justify-content:center;
        text-align:center;
}
    .small{font-size:12px; color: rgba(185,196,230,.85);}
    .kbd{
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.04);
      color: var(--text);
    }

/* ===== Mini-jeux ===== */
.games-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.game-card{ grid-column: span 6; }
@media (max-width: 900px){ .game-card{ grid-column: span 12; } }

.game-card .title-row{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom: 8px;
}

.result-box{
  margin-top: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 72px;
}

.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .3px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}

.tag.pile{
  background: rgba(0, 255, 102, .12);
  border-color: rgba(0, 255, 102, .28);
  color: #bfffe0;
}
.tag.face{
  background: rgba(255, 59, 59, .12);
  border-color: rgba(255, 59, 59, .28);
  color: #ffd0d0;
}

.btn.ghost{
  background: rgba(255,255,255,.02);
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.stats > div{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  text-align:center;
  background: rgba(255,255,255,.02);
}
.stats strong{ font-size: 20px; display:block; color: var(--text); }
.stats span{ opacity: .85; font-size: 12px; color: var(--muted); }

.soon{
  display:inline-block;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}

.logo{
  height:50px;
  width:auto;
  display:block;
}

#produit{
  scroll-margin-top: 90px;
}

header{
  position:sticky;
  top:0;
}

section{
  scroll-margin-top: 120px;
}
html{
  scroll-behavior: smooth;
}

.links a.active{
  background: rgba(255,255,255,.10);
  color: var(--text);
  font-weight:600;
}

