.page{
  padding:50px 0 70px;
}

.page h1{
  display:inline-block;
  font-size:clamp(2rem,4vw,3.8rem);
  background:var(--pink);
  color:var(--line);
  padding:12px 18px;
  border:4px solid var(--line);
  border-radius:18px;
  box-shadow:6px 6px 0 var(--line);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:1px;
}

.page p{
  max-width:760px;
  font-size:1.1rem;
  color:#333;
  font-weight:800;
  margin-top:24px;
}

.disclaimer-jeux{
  max-width:860px;
  margin-top:18px;
  background:#fff;
  border:3px solid var(--line);
  border-radius:16px;
  box-shadow:4px 4px 0 var(--line);
  padding:14px 16px;
  font-weight:800;
  color:#222;
  line-height:1.5;
}

.genres-list{
  display:grid;
  gap:34px;
  margin-top:36px;
}

.genre-section{
  background:rgba(255,255,255,.5);
  border:3px solid var(--line);
  border-radius:24px;
  box-shadow:6px 6px 0 var(--line);
  padding:20px;
}

.genre-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.genre-head h2{
  margin:0;
  display:inline-block;
  background:#ffd32a;
  color:#111;
  border:3px solid var(--line);
  border-radius:16px;
  box-shadow:4px 4px 0 var(--line);
  padding:8px 14px;
  text-transform:uppercase;
  font-size:1.45rem;
  font-weight:900;
}

.genre-head span{
  background:white;
  border:3px solid var(--line);
  border-radius:14px;
  box-shadow:4px 4px 0 var(--line);
  padding:8px 12px;
  font-weight:900;
}

.games-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.game-card{
  min-height:190px;
  padding:24px;
  border:4px solid var(--line);
  border-radius:22px;
  box-shadow:6px 6px 0 var(--line);
  display:grid;
  align-content:space-between;
  color:var(--line);
  transition:.18s ease;
}

.game-card:hover{
  transform:translate(-4px,-4px);
  box-shadow:10px 10px 0 var(--line);
}

.game-card.yellow{background:#fffa85}
.game-card.pink{background:#ff9ff3}
.game-card.blue{background:#7ed6df}
.game-card.green{background:#badc58}

.game-card strong{
  font-size:1.5rem;
  font-weight:900;
  text-transform:uppercase;
}

.game-card span{
  font-size:1rem;
  color:#333;
  font-weight:800;
  line-height:1.35;
}

.game-card small{
  display:inline-block;
  width:max-content;
  padding:6px 10px;
  background:white;
  border:3px solid var(--line);
  border-radius:12px;
  font-weight:900;
  box-shadow:3px 3px 0 var(--line);
}

@media(max-width:992px){
  .games-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .games-grid{
    grid-template-columns:1fr;
  }

  .genre-section{
    padding:16px;
  }
}

.game-multiplayer-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  width:max-content;
  margin:6px 0 8px;
  background:#7ed6df;
  color:#111;
  border:2px solid var(--line);
  border-radius:999px;
  box-shadow:3px 3px 0 var(--line);
  padding:5px 9px;
  font-size:.78rem;
  font-weight:900;
  line-height:1;
}

.game-multiplayer-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:34px;
  margin:6px 0 8px;
  background:#7ed6df;
  color:#111;
  border:2px solid var(--line);
  border-radius:999px;
  box-shadow:3px 3px 0 var(--line);
  padding:0 10px;
  font-size:1rem;
  font-weight:900;
  line-height:1;
}

.game-card-top{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.game-card .game-multiplayer-badge{
  margin:0;
}
