:root{
  --bg:#0b1220;
  --card:#111b2e;
  --text:#e9eefc;
  --muted:#a9b4d0;
  --accent:#6aa7ff;
  --ring: rgba(106,167,255,.35);
  --max: 1100px;
}



.jeu-cover{
  width: 250px;
  height:250px;
 
    object-fit: cover;
  border-radius: 12px;
  display: block;
}

*{box-sizing:border-box}
html,body{
	margin:0;
	padding:0;
	width: 100%;
  height: 100%;
	}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  min-height: 100vh;
  margin: 0;

  background:
    radial-gradient(
      900px 600px at 20% 0%,
      rgba(106,167,255,.18),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 80% 20%,
      rgba(120,255,212,.10),
      transparent 55%
    ),
    var(--bg);

  background-repeat: no-repeat;
  background-attachment: fixed;

}
label{color:white;padding-right:5px;}

a{color:white;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:20px}

.nav{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index:20;
}
.nav-inner{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  max-width:var(--max); margin:0 auto; padding:14px 20px;
}
.brand{font-weight:800; letter-spacing:.2px;font-size:40px;}
.menu{display:flex; gap:10px; flex-wrap:wrap}
.pill{
	width:150px;
	text-align:center;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.pill:hover{border-color:rgba(255,255,255,.22)}
.pill.active{border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring)}

.hero{
  display:grid; gap:16px;
  padding:26px 0 8px;
}
.hero h1{margin:0;font-size:clamp(24px, 4vw, 40px);line-height:1.15;color:white;}
.hero p{margin:0;color:var(--muted);max-width:70ch}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin:18px 0 34px;
}
.card{
  grid-column: span 12;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow:hidden;
}
.card-inner{padding:16px;

}
.card h3{margin:0 0 8px;
color:white;
}
.meta{color:var(--muted); font-size:14px}
.badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.badge{
  font-size:12px; padding:6px 10px; border-radius:999px;
  background: rgba(106,167,255,.12);
  border: 1px solid rgba(106,167,255,.25);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px; border-radius:12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  margin-top:12px;
  color:white;
  width:120px;
}
.btn:hover{border-color: rgba(255,255,255,.26)}
.split{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.lb{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}
.lb.open{display:flex}
.lb img{
  max-width:min(92vw,1200px);
  max-height:90vh;
  border-radius:16px;
  background:#fff;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0 30px;
  color: var(--muted);
  font-size:14px;
}

@media (min-width: 720px){
  .card{grid-column: span 6;}
  .split{grid-template-columns: 1.2fr .8fr;}
}
@media (min-width: 980px){
  .card{grid-column: span 4;}
}
