/* Herald · Charades — app tweaks. Base in glass-core.css.
   Bright, high-contrast for the see-through additive display. */

/* deck grid tiles */
.ch-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 96px;
  padding: 12px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.ch-tile-ic { color: #ffd166; }
.ch-tile-ic svg { width: 30px; height: 30px; }
.ch-tile-nm { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.ch-tile-sb { font-size: 12px; color: var(--text-muted); }

.ch-bar {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 6px 0 2px;
}
.ch-chip, .ch-btn {
  flex: 1;
  text-align: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}
.ch-btn.primary {
  color: #1a1606;
  background: linear-gradient(180deg, #ffe08a, #ffd166);
  border: 0;
}
.ch-chip:focus, .ch-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--focus-ring), 0 10px 24px rgba(255, 209, 102, 0.32);
  transform: translateY(-1px);
}
.ch-foot {
  flex-shrink: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0 2px;
}

/* full-bleed play */
.ch-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.ch-top {
  position: absolute;
  top: 22px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  font-size: 30px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ch-time { color: #ffd166; }
.ch-score { color: #6affb4; }
.ch-word {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  max-width: 92%;
}
.ch-hint {
  position: absolute;
  bottom: 26px; left: 0; right: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}

/* results recap */
.ch-sum {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 8px 4px;
}
.ch-rc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 4px;
}
.ch-rc.ok { background: rgba(106, 255, 180, 0.10); }
.ch-rc-i {
  width: 18px;
  text-align: center;
  font-weight: 800;
  color: var(--text-muted);
}
.ch-rc.ok .ch-rc-i { color: #6affb4; }
.ch-rc-w { font-size: 16px; font-weight: 700; color: var(--text-primary); }
