
.jeu-banner {
  position: relative;
  margin: -28px -24px 20px;
  padding: 14px 20px 16px;
  text-align: center;
  background: none;
  border-bottom: 1px solid var(--line, #2a2f37);
  border-radius: 0;
  overflow: hidden;
}

.banner-deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  min-height: 22px;
}

.banner-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}


.banner-home {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.15s;
  z-index: 2;
}

.banner-home:hover {
  opacity: 1;
  transform: translateY(-50%) translateY(-1px);
}

.banner-home svg {
  display: block;
}


.banner-home .stop-light {
  stop-color: var(--color-light, #a78bfa);
}

.banner-home .stop-mid {
  stop-color: var(--color-mid, #818cf8);
}

.banner-home .stop-dark {
  stop-color: var(--color-dark, #6366f1);
}


.banner-title {
  display: inline-block;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f0f3f6;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.banner-title:hover {
  color: var(--color-light, #a78bfa);
}

@media (max-width: 480px) {

  .jeu-banner {
    padding: 12px 14px 12px;
    border-radius: 0;
  }

  .banner-title {
    font-size: 1.1rem;
  }

  .banner-home {
    width: 28px;
    height: 28px;
  }

  .banner-home svg {
    width: 18px;
    height: 18px;
  }
}
