
.bloc-jeux-une-card {
  position: relative;
  padding: 18px 14px 14px;
  background: var(--surface-2, #1c2027);
  border: 1px solid var(--line, #2a2f37);
  border-radius: 6px;
  color: var(--texte-doux, #98a1ad);
}

.bloc-jeux-une-header {
  position: absolute;
  top: -0.95em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.bloc-jeux-une-badge {
  background: #6d5bd0;
  padding: 2px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  border-radius: 3px;
  white-space: nowrap;
}

.bloc-jeux-une-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.bloc-jeux-une-tile {
  display: block;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line, #2a2f37);
  background: var(--surface-0, #0e1014);
  aspect-ratio: 1 / 1;
  transition: border-color 0.15s ease;
}

.bloc-jeux-une-tile:hover {
  border-color: var(--color-light, #a78bfa);
}

.bloc-jeux-une-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bloc-jeux-une-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 6px 4px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  background: linear-gradient(to top, rgba(10, 8, 25, 0.92), rgba(10, 8, 25, 0));
}

.bloc-jeux-une-all {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--texte-doux, #98a1ad);
  text-decoration: none;
}

.bloc-jeux-une-all:hover {
  text-decoration: underline;
}


.bloc-jeux-une-wrap {
  display: none;
}

@media (min-width: 1280px) {

  .bloc-jeux-une-wrap {
    display: block;
    position: fixed;
    left: calc((100vw - 800px) / 4);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    z-index: 100;
  }
}
