/* wahrheit-oder-pils/game.css — Styles for the group game */
/* Base screen + intro + confetti + bubbles → ../shared/game-ui.css */

/* ─── INTRO STEPS: fix overflow on narrow phones (< ~390px) ─────────────────── */
#screen-intro .intro-steps { gap: 0.2rem; }
#screen-intro .intro-step  { min-width: 56px; padding: 0.5rem 0.5rem; }
#screen-intro .intro-step-icon { font-size: 1.4rem; }
#screen-intro .intro-step-sep  { font-size: 1rem; }

/* ─── INTRO EXTRAS ───────────────────────────────────────────────────────────── */
.intro-zeig-icon {
  font-size: clamp(3.5rem, 14vw, 6rem);
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(245,166,35,0.5));
  z-index: 1;
  animation: iconBob 2s ease-in-out infinite;
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.intro-speak-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 0.55rem 1.4rem;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.15s, color 0.15s;
  z-index: 1;
}
.intro-speak-btn:active { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

/* ─── SCREEN: SELECT (multi-player) ─────────────────────────────────────────── */
#screen-select {
  justify-content: flex-start;
  overflow: hidden;
  background: var(--bg);
  gap: 0.6rem;
  padding: max(0.9rem, calc(env(safe-area-inset-top) + 0.4rem)) 1rem 0.9rem;
  align-items: center;
}

.ws-header { text-align: center; z-index: 1; }
.ws-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-weight: 500;
}
.ws-title {
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 0.15rem;
}
.ws-subtitle {
  font-size: 0.6rem;
  color: rgba(255,200,100,0.35);
  font-family: 'DM Mono', monospace;
  margin-top: 0.2rem;
}

.ws-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.ws-counter-num {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1;
  min-width: 1.2rem;
  text-align: center;
}
.ws-counter-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(255,200,100,0.35);
}

/* 4-column member grid */
.ws-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  width: 100%;
  max-width: 480px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}

.ws-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  padding: 0.5rem 0.2rem 0.4rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.ws-member:active { transform: scale(0.92); }
.ws-member:focus-visible { outline: 2px solid var(--amber-hi, #F5B030); outline-offset: 2px; }
.ws-member.selected {
  border-color: rgba(245,166,35,0.65);
  background: rgba(245,166,35,0.1);
}
.ws-member.my-player {
  border-color: var(--amber-hi);
  box-shadow: 0 0 0 2px var(--amber-hi);
  cursor: default;
}

.ws-member.my-player::after {
  content: '👤';
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 0.7rem;
}
.ws-member.my-player .ws-member-check {
  display: none;
}
.ws-member.at-max:not(.selected) { opacity: 0.55; pointer-events: none; }

.ws-member-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color 0.15s;
  display: block;
}
.ws-member.selected .ws-member-photo { border-color: var(--gold); }
.ws-member-photo-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.ws-member-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.42rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.38);
  text-align: center;
  line-height: 1.2;
  transition: color 0.15s;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 2px;
}
.ws-member.selected .ws-member-name { color: var(--gold); }

.ws-member-check {
  position: absolute;
  top: 3px; right: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #080600;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
  font-family: 'DM Mono', monospace;
}
.ws-member.selected .ws-member-check { opacity: 1; }

.ws-start-btn {
  width: 100%; max-width: 480px;
  height: 54px;
  min-height: 44px;
  background: var(--gold);
  color: #080600;
  border: 2px solid var(--cream);
  border-radius: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.1s ease-out, opacity 0.15s ease-out;
  touch-action: manipulation;
  z-index: 1;
}
.ws-start-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; filter: grayscale(0.4); }
.ws-start-btn:not(:disabled):active { transform: scale(0.96); }

.ws-back-btn {
  position: absolute;
  top: max(0.9rem, calc(env(safe-area-inset-top) + 0.4rem)); left: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(245,166,35,0.35);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

/* ─── SCREEN: QUESTION ───────────────────────────────────────────────────────── */
#screen-question {
  background: var(--bg);
  padding: 1rem;
  gap: 0.8rem;
  justify-content: space-between;
}

.wq-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
}
.wq-round {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,200,100,0.35);
}
.wq-round strong {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
}
.wq-speak-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  color: rgba(245,166,35,0.5);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  flex-shrink: 0;
}
.wq-speak-btn:active { background: rgba(245,166,35,0.2); }

/* Question card */
.wq-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 18px;
  padding: 1.8rem 1.2rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  z-index: 1;
}

.wq-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  color: rgba(245,166,35,0.4);
  text-transform: uppercase;
}

.wq-vs {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.wq-name {
  font-size: clamp(1.1rem, 4.5vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(245,166,35,0.45);
  line-height: 1;
}
.wq-vs-sep {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.2em;
}

.wq-question {
  font-size: clamp(1.4rem, 5.5vw, 2.1rem);
  letter-spacing: 0.02em;
  line-height: 1.22;
  color: #fff;
}

.wq-hint {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
}

.wq-bereit-btn {
  width: 100%; max-width: 480px;
  height: 66px;
  min-height: 44px;
  background: var(--gold);
  color: #080600;
  border: 2px solid var(--cream);
  border-radius: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s;
  box-shadow: 0 4px 28px rgba(245,166,35,0.28);
  z-index: 1;
}
.wq-bereit-btn:active { transform: scale(0.96); }

/* ─── OVERLAY: COUNTDOWN ─────────────────────────────────────────────────────── */
#overlay-countdown {
  position: fixed;
  inset: 0;
  background: rgba(4, 2, 0, 0.97);
  z-index: 80;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#overlay-countdown.visible { display: flex; }

.wcd-num {
  font-size: clamp(9rem, 38vw, 16rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 60px rgba(245,166,35,0.75), 0 0 120px rgba(245,166,35,0.3);
  animation: wcdPop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes wcdPop {
  from { transform: scale(0.45); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.wcd-zeig {
  font-size: clamp(4.5rem, 20vw, 9rem);
  color: var(--gold);
  letter-spacing: 0.06em;
  text-shadow: 0 0 60px rgba(245,166,35,0.95), 0 0 120px rgba(245,166,35,0.5);
  animation: wcdZeig 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes wcdZeig {
  from { transform: scale(0.55) translateY(18px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

.wcd-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,200,100,0.35);
  letter-spacing: 0.28em;
  margin-top: 0.6rem;
}

/* Screen flash on ZEIG */
#overlay-countdown.zeig-flash::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(245,166,35,0.35);
  pointer-events: none;
  animation: zeigFlash 0.55s ease-out forwards;
}
@keyframes zeigFlash {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ─── SCREEN: ZEIG (pick schuldig) ──────────────────────────────────────────── */
#screen-zeig {
  background: var(--bg);
  padding: 1.4rem 1rem 1.5rem;
  gap: 0.7rem;
  justify-content: flex-start;
}

.wz-title {
  font-size: clamp(1.6rem, 7vw, 2.8rem);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
  z-index: 1;
}
.wz-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem;
  color: rgba(255,200,100,0.55);
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 1;
}

/* Two large side-by-side cards — only the 2 players named in the question */
.wz-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  flex: 1;
  z-index: 1;
}

.wz-player {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1.4rem 0.8rem;
  border-radius: 20px;
  border: 2.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.12s, background 0.12s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  max-width: 190px;
}
.wz-player:active {
  transform: scale(0.93);
  border-color: rgba(255,80,80,0.7);
  background: rgba(255,80,80,0.1);
}

.wz-player-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.wz-player-photo-placeholder {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.wz-player-name {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  pointer-events: none;
  line-height: 1.1;
}

/* ─── SCREEN: CHOICE (wahrheit oder pils) ───────────────────────────────────── */
#screen-choice {
  background: var(--bg);
  padding: 1.4rem 1.2rem 1.8rem;
  gap: 0.85rem;
}

.wch-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,80,80,0.5);
  box-shadow: 0 0 36px rgba(255,80,80,0.2);
  z-index: 1;
}
.wch-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  z-index: 1;
}

.wch-schuldig {
  font-size: clamp(2.6rem, 12vw, 4.5rem);
  letter-spacing: 0.06em;
  color: #ff5555;
  text-shadow: 0 0 32px rgba(255,80,80,0.55);
  line-height: 1;
  text-align: center;
  z-index: 1;
}

.wch-name {
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  text-align: center;
  z-index: 1;
}

/* Prominent directive — replaces tiny .wch-prompt */
.wch-directive {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(255,200,100,0.75);
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}

.wch-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 420px;
  z-index: 1;
}

.wch-btn-wahrheit {
  height: 86px;
  background: rgba(245,166,35,0.1);
  border: 2.5px solid var(--gold);
  border-radius: 14px;
  color: var(--gold);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s, background 0.1s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.22rem; padding: 0.5rem 1rem;
}
.wch-btn-wahrheit:active { transform: scale(0.96); background: rgba(245,166,35,0.22); }

.wch-btn-pils {
  height: 86px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s, background 0.1s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.22rem; padding: 0.5rem 1rem;
}
.wch-btn-pils:active { transform: scale(0.96); background: rgba(255,255,255,0.1); }

/* Button sub-labels */
.wch-btn-main {
  font-family: 'Anton', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
}
.wch-btn-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
  line-height: 1.3;
  text-align: center;
  pointer-events: none;
}

/* ─── SCREEN: FOLLOWUP (wahrheit chosen) ────────────────────────────────────── */
#screen-followup {
  background: var(--bg);
  padding: 1.5rem 1.2rem 2rem;
  gap: 1rem;
  justify-content: space-between;
}

.wfu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 1rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  z-index: 1;
}

.wfu-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(245,166,35,0.04);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: 18px;
  padding: 2rem 1.4rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  z-index: 1;
}

.wfu-question {
  font-size: clamp(1.25rem, 5vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
}

.wfu-speak-btn {
  background: none;
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  color: rgba(245,166,35,0.45);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  touch-action: manipulation;
}
.wfu-speak-btn:active { background: rgba(245,166,35,0.1); }

/* Prominent instruction bar — replacing tiny italic text */
.wfu-instruction {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.wfu-inst-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.wfu-inst-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(255,200,100,0.9);
  line-height: 1.3;
}

.wfu-done-btn {
  width: 100%; max-width: 480px;
  height: 60px;
  background: var(--gold);
  color: #080600;
  border: none;
  border-radius: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s;
  z-index: 1;
}
.wfu-done-btn:active { transform: scale(0.96); }

/* ─── SCREEN: TRINK (pils chosen) ───────────────────────────────────────────── */
#screen-trink {
  background: var(--bg);
  padding: 2rem 1.2rem;
  gap: 1rem;
}

.wtr-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 0 32px rgba(245,166,35,0.28);
  z-index: 1;
}
.wtr-photo-placeholder {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  z-index: 1;
}

.wtr-beer {
  font-size: 5.5rem;
  line-height: 1;
  animation: beerPulse 1s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(245,166,35,0.65));
  z-index: 1;
}

.wtr-trink {
  font-size: clamp(4rem, 18vw, 7rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 48px rgba(245,166,35,0.75);
  line-height: 1;
  text-align: center;
  z-index: 1;
}

.wtr-name {
  font-size: clamp(1.1rem, 4.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  text-align: center;
  z-index: 1;
}

.wtr-hint {
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem;
  color: rgba(255,200,100,0.5);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}

.wtr-done-btn {
  width: 100%; max-width: 420px;
  height: 60px;
  background: rgba(245,166,35,0.1);
  border: 2px solid var(--gold);
  border-radius: 10px;
  color: var(--gold);
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s;
  margin-top: auto;
  z-index: 1;
}
.wtr-done-btn:active { transform: scale(0.96); }

/* ─── SCREEN: RESULT (group version) ────────────────────────────────────────── */
#screen-result {
  padding: 1.2rem 1rem 1.8rem;
  gap: 0.75rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

.wr-emmy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 1;
}
.wr-emmy-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 22px rgba(245,166,35,0.28);
}
.wr-emmy-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: rgba(245,166,35,0.45);
}

.wr-verdict {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255,200,100,0.6);
  line-height: 1.6;
  max-width: 340px;
  text-align: center;
  padding: 0 0.5rem;
  z-index: 1;
}

.wr-divider {
  width: 60px;
  height: 1px;
  background: rgba(245,166,35,0.2);
  z-index: 1;
}

.wr-winner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
}
.wr-trophy { font-size: 2.2rem; line-height: 1; }
.wr-winner-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  color: rgba(245,166,35,0.4);
}
.wr-winner-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 0 24px rgba(245,166,35,0.25);
}
.wr-winner-name {
  font-size: clamp(1.8rem, 8vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--gold);
}

/* Stats list */
.wr-stats {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.wr-stats-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.2);
  text-align: left;
}

.wr-stat-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.48rem 0.7rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.wr-stat-row.winner-row {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.07);
}

.wr-stat-photo {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.wr-stat-name {
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wr-stat-badges {
  display: flex;
  gap: 0.28rem;
  flex-shrink: 0;
}
.wr-stat-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.48rem;
  padding: 0.14rem 0.38rem;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
}
.wr-stat-badge.accused {
  color: rgba(255,100,100,0.85);
  border-color: rgba(255,80,80,0.25);
  background: rgba(255,80,80,0.05);
}
.wr-stat-badge.pils {
  color: rgba(245,166,35,0.85);
  border-color: rgba(245,166,35,0.25);
  background: rgba(245,166,35,0.05);
}
.wr-stat-badge.quatsch {
  color: rgba(100,210,100,0.85);
  border-color: rgba(100,210,100,0.25);
  background: rgba(100,210,100,0.05);
}
.wr-stat-badge.clean {
  color: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.1);
  background: transparent;
}

/* Buttons row */
.wr-btn-row {
  display: flex;
  gap: 0.7rem;
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.wr-btn {
  flex: 1;
  height: 52px;
  min-height: 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s;
}
.wr-btn:active { transform: scale(0.96); }
.wr-btn.primary {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: #080600;
  border: 2px solid var(--cream);
}
.wr-btn.secondary {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ─── SCREEN: GRUPPEN-CHALLENGE ──────────────────────────────────────────────── */
#screen-challenge {
  background: var(--bg);
  padding: 1.2rem 1.2rem 1.8rem;
  gap: 0.9rem;
  justify-content: space-between;
}

.wgc-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  z-index: 1;
}
.wgc-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.65;
}
.wgc-round-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  color: rgba(255,200,100,0.35);
}

.wgc-type-icon {
  font-size: clamp(3rem, 13vw, 5rem);
  line-height: 1;
  filter: drop-shadow(0 0 22px rgba(245,166,35,0.6));
  animation: iconBob 1.6s ease-in-out infinite;
  z-index: 1;
}

.wgc-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: rgba(245,166,35,0.04);
  border: 1.5px solid rgba(245,166,35,0.2);
  border-radius: 18px;
  padding: 1.6rem 1.3rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  z-index: 1;
}

.wgc-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  color: rgba(245,166,35,0.5);
  text-transform: uppercase;
}

.wgc-title {
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 28px rgba(245,166,35,0.45);
}

.wgc-task {
  font-size: clamp(0.9rem, 3.8vw, 1.25rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
}

.wgc-speak-btn {
  background: none;
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  color: rgba(245,166,35,0.45);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  touch-action: manipulation;
}
.wgc-speak-btn:active { background: rgba(245,166,35,0.1); }

.wgc-signal-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.09);
  border: 1.5px solid rgba(245,166,35,0.35);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  width: 100%;
  max-width: 480px;
  z-index: 1;
  animation: signalPulse 1.4s ease-in-out infinite;
}
@keyframes signalPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(245,166,35,0); }
  50%       { box-shadow: 0 0 18px rgba(245,166,35,0.25); }
}

.wgc-signal-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1rem, 4.5vw, 1.6rem);
  letter-spacing: 0.12em;
  color: var(--gold);
  text-align: center;
  line-height: 1;
}

.wgc-done-btn {
  width: 100%; max-width: 480px;
  height: 60px;
  background: var(--gold);
  color: #080600;
  border: none;
  border-radius: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.1s;
  z-index: 1;
}
.wgc-done-btn:active { transform: scale(0.96); }

/* shared beerPulse (also used in intro) */
@keyframes beerPulse {
  0%, 100% { transform: scale(1)    rotate(-4deg); }
  50%       { transform: scale(1.1) rotate(4deg);  }
}

/* ─── SHARE BUTTON (dynamically created in wahrheit.js) ─────────────────────── */
.wop-share-btn {
  margin-top: 0.6rem;
  width: 100%;
  font-family: Anton, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0.65rem 1rem;
  background: rgba(245,176,48,0.12);
  color: #F5B030;
  border: 1px solid rgba(245,176,48,0.3);
  border-radius: 8px;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
