/* never.css — Styles für das Spiel "Ich habe noch nie" (Ich habe noch nie V1.1) */

  /* Kopfzeile: Spiel-Icon + Name, zentriert. */
  .never-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
  }
  .never-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
  }
  .never-title {
    font-family: 'Bangers', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--ink);
    text-align: center;
  }

  /* Aussage-Karte = Creme-Bierdeckel mit doppeltem Innenring (Bar/Cartoon-Look). */
  .never-card {
    border: 4px solid var(--bar-ink);
    border-radius: 22px;
    background: var(--bar-cream);
    -webkit-backdrop-filter: none; backdrop-filter: none;
    box-shadow:
      inset 0 0 0 5px var(--bar-cream),
      inset 0 0 0 7px rgba(27, 53, 86, 0.25),
      0 6px 0 rgba(0, 0, 0, 0.35);
    padding: 22px 18px;
    margin: 16px 0;
    text-align: center;
  }
  .never-prefix {
    font-family: 'Bangers', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: rgba(27, 53, 86, 0.6);
    margin-bottom: 8px;
  }
  .never-statement {
    font-family: 'Patrick Hand', cursive;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    color: var(--bar-ink);
  }

  /* Zwei Entscheidungs-Buttons des aktiven Spielers (untereinander). */
  .never-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  /* "Ich habe" = orange Trink-Button (Konsequenz: du trinkst 1). */
  .never-have {
    background: var(--bar-badge);
    color: var(--bar-ink);
    box-shadow: 0 10px 26px rgba(255, 182, 60, 0.45);
  }
  .never-have:hover { background: #ffa726; }
  .never-have:active { box-shadow: 0 6px 18px rgba(255, 182, 60, 0.4); }

  @media (max-width: 500px) {
    .never-title { font-size: 26px; }
    .never-prefix { font-size: 19px; }
    .never-statement { font-size: 26px; }
    .never-logo { width: 60px; height: 60px; }
  }
