/* Shared toast for a refused score. Amber, not red: the run happened and the
   player's achievements still counted — it simply did not reach the board. */
.cc-score-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  z-index: 400;
  max-width: min(92vw, 560px);
  padding: 12px 18px;
  border: 1px solid #d9a441;
  border-radius: 8px;
  background: rgba(12, 9, 4, 0.95);
  color: #ffc466;
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cc-score-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cc-score-notice a {
  color: #00ffff;
  text-decoration: underline;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .cc-score-notice {
    transition: none;
  }
}
