/* Encart bêta ChillGame */
.beta-feedback-banner {
  background: #fff7d6;
  border-bottom: 4px solid #111827;
  color: #111827;
}

.beta-feedback-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.beta-feedback-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
}

.beta-feedback-badge {
  display: inline-flex;
  align-items: center;
  border: 3px solid #111827;
  background: #ffd84d;
  padding: 6px 10px;
  box-shadow: 3px 3px 0 #111827;
  text-transform: uppercase;
  font-size: .82rem;
  line-height: 1;
}

.beta-feedback-text span:last-child {
  font-size: .95rem;
}

.beta-feedback-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #111827;
  background: #ec4899;
  color: #ffffff;
  padding: 9px 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 #111827;
  white-space: nowrap;
  cursor: pointer;
}

.beta-feedback-action:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #111827;
}

.beta-feedback-action.is-muted {
  background: #3b82f6;
}

@media (max-width: 760px) {
  .beta-feedback-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .beta-feedback-action {
    width: 100%;
  }
}
