/* ==========================================================================
   PHONE — truth or dare.
   ========================================================================== */

.td-card {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.td-kind {
  display: block;
  font-size: .7rem;
  letter-spacing: .3em;
  font-weight: 900;
  margin-bottom: 10px;
}
.td-kind.truth { color: var(--blue); }
.td-kind.dare  { color: var(--pink); }

/* The stakes are stated before the choice, never after it. */
.td-warn {
  background: rgba(234,88,125,.12);
  border: 2px solid var(--pink);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.td-warn b { color: var(--pink); }

.td-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}
.td-actions .btn { width: 100%; }
