/* HaiGames SDK — Would You Rather game specific styles
 *
 * Shared overlay/sheet/header/status/comment/action-btn live in games/games.css.
 * This file carries only WYR-specific layout. Values are a verbatim port of the
 * inline WYR CSS that used to live in companion.html (lines ~469–493), renamed
 * from `.wyr-*` to `.hg-wyr-*` to match the SDK namespace convention.
 */

.hg-wyr-question {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin-bottom: 22px;
  padding: 0 8px;
  min-height: 60px;
}

.hg-wyr-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.hg-wyr-choice-btn {
  padding: 16px 10px;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s;
}
.hg-wyr-choice-btn:hover:not(:disabled) {
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.4);
  color: #fff;
}
.hg-wyr-choice-btn:active:not(:disabled) { transform: scale(0.97); }
.hg-wyr-choice-btn.selected {
  background: rgba(167, 139, 250, 0.22);
  border-color: rgba(167, 139, 250, 0.65);
  color: #fff;
}
.hg-wyr-choice-btn.buddy-pick {
  border-color: rgba(244, 114, 182, 0.65);
  box-shadow: 0 0 0 1px rgba(244, 114, 182, 0.25);
}
.hg-wyr-choice-btn:disabled { cursor: default; }

.hg-wyr-choice-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.5;
}

.hg-wyr-credit-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}
