/* Pravda nebo lež — veřejná hra + admin */

.truth-lie-hub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

a.truth-lie-hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

a.truth-lie-hub-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.truth-lie-hub-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted, #64748b);
}

.truth-lie-hub-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.truth-lie-hub-lead {
  margin: 0 0 0.75rem;
  color: var(--color-muted, #475569);
}

.truth-lie-admin-grid {
  display: grid;
  gap: 1rem;
}

.truth-lie-admin-text {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.truth-lie-admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.truth-lie-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.truth-lie-badge--truth {
  background: color-mix(in srgb, var(--color-primary, #91201f) 12%, #fff);
  color: var(--color-primary, #91201f);
}

.truth-lie-badge--lie {
  background: #f1f5f9;
  color: #334155;
}

.truth-lie-statement-wrap {
  margin: 1.25rem 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--color-primary-soft, #f8e9e8) 55%, #fff);
  border: 1px solid color-mix(in srgb, var(--color-primary, #91201f) 18%, transparent);
}

.truth-lie-statement-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted, #64748b);
}

.truth-lie-statement {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.4;
  font-weight: 650;
}

.truth-lie-answer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.truth-lie-answer-actions .btn {
  min-height: 3.1rem;
  font-size: 1.1rem;
}

/* Lež = mírně načervenalá (odlišit od zelené Pravdy / tématu) */
.truth-lie-btn-lie.btn,
.truth-lie-btn-lie.btn-secondary {
  background: color-mix(in srgb, #dc2626 16%, #fff);
  border-color: color-mix(in srgb, #b91c1c 42%, transparent);
  color: #991b1b;
}

.truth-lie-btn-lie.btn:hover:not(:disabled):not(.is-busy),
.truth-lie-btn-lie.btn-secondary:hover:not(:disabled):not(.is-busy) {
  background: color-mix(in srgb, #dc2626 26%, #fff);
  border-color: color-mix(in srgb, #b91c1c 55%, transparent);
  color: #7f1d1d;
}

.truth-lie-timer-pill.is-urgent {
  background: color-mix(in srgb, #b45309 18%, #fff);
  color: #9a3412;
  font-weight: 700;
}

.truth-lie-feedback {
  margin-top: 1.25rem;
  padding: 1.15rem 1.3rem;
  border-radius: 1rem;
  border: 2px solid color-mix(in srgb, var(--color-primary, #91201f) 16%, transparent);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.truth-lie-feedback.is-correct {
  border-color: #15803d;
  background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%);
  box-shadow: 0 4px 18px color-mix(in srgb, #15803d 22%, transparent);
}

.truth-lie-feedback.is-correct .truth-lie-feedback-headline {
  color: #14532d;
}

.truth-lie-feedback.is-correct .truth-lie-feedback-detail {
  color: #166534;
}

.truth-lie-feedback.is-wrong {
  border-color: #b91c1c;
  background: linear-gradient(180deg, #fee2e2 0%, #fecaca 100%);
  box-shadow: 0 4px 18px color-mix(in srgb, #b91c1c 22%, transparent);
}

.truth-lie-feedback.is-wrong .truth-lie-feedback-headline {
  color: #7f1d1d;
}

.truth-lie-feedback.is-wrong .truth-lie-feedback-detail {
  color: #991b1b;
}

.truth-lie-feedback.is-timeout {
  border-color: #c2410c;
  background: linear-gradient(180deg, #ffedd5 0%, #fed7aa 100%);
  box-shadow: 0 4px 18px color-mix(in srgb, #c2410c 18%, transparent);
}

.truth-lie-feedback.is-timeout .truth-lie-feedback-headline {
  color: #9a3412;
}

.truth-lie-feedback-headline {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  font-weight: 750;
  line-height: 1.25;
}

.truth-lie-feedback-detail {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 550;
}

.truth-lie-feedback-time {
  margin: 0 0 1rem;
  color: var(--color-muted, #475569);
  font-size: 0.98rem;
  line-height: 1.4;
}

.truth-lie-feedback-time.is-great {
  color: #166534;
  font-weight: 650;
}

.truth-lie-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 560px) {
  .truth-lie-answer-actions {
    grid-template-columns: 1fr;
  }

  .truth-lie-feedback-actions .btn {
    width: 100%;
  }
}
