/* Visible legal and privacy notice shared by the newer BlumSoft games. */
.game-legal-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  min-height: 31px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(45, 69, 76, .16);
  background: #f4f7f8;
  color: #53666d;
  font: 700 10px/1.45 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  text-align: center;
}

.game-legal-bar a {
  color: #075f7d;
  font-weight: 900;
  text-underline-offset: 2px;
}

@media (max-width: 560px) {
  .game-legal-bar {
    gap: 3px 6px;
    padding: 5px 8px;
    font-size: 9px;
  }
}

@media (prefers-color-scheme: dark) {
  .game-legal-bar {
    border-color: rgba(184, 217, 225, .2);
    background: #102832;
    color: #c3d5db;
  }

  .game-legal-bar a {
    color: #91d8ef;
  }
}
