/* ============================================================
   ACADEMIA DE CRACKS · Mood response + match check-in (iter22)
   Pantallas: #screen-mood-response · #screen-match-checkin
   Tono visual: cálido y calmo — es el momento de acompañar,
   no de gamificar. Sin glow agresivo, sin contadores.
   ============================================================ */

/* ---- Respuesta al mood ---- */
.mr-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding: 24px 8px;
  text-align: center;
}

.mr-emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 20px;
}

.mr-line1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--smoke);
  line-height: 1.35;
  margin: 0 0 10px;
}

.mr-line2 {
  font-size: 15px;
  color: var(--smoke-2);
  line-height: 1.5;
  margin: 0 0 18px;
}

.mr-note-ack {
  font-size: 13px;
  color: var(--smoke-dim);
  margin-bottom: 14px;
}

/* Card de escalamiento — ánimo bajo sostenido. Paleta calma (azul
   grisáceo, como el parent dashboard), NO naranja de alerta: el chico
   no tiene que sentir que hizo algo mal. */
.mr-low-card {
  background: rgba(100, 140, 200, 0.08);
  border: 1px solid rgba(100, 140, 200, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 4px 0 18px;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mr-low-icon { font-size: 22px; flex-shrink: 0; }

.mr-low-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--smoke);
  margin: 0 0 4px;
}

.mr-low-text {
  font-size: 13px;
  color: var(--smoke-2);
  line-height: 1.5;
  margin: 0;
}

/* Bloque pregunta de partido */
.mr-match-block {
  border-top: 1px solid var(--glass-border);
  padding-top: 18px;
  margin-top: 6px;
}

.mr-match-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--smoke);
  margin: 0 0 12px;
}

.mr-match-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mr-match-btns .btn { flex: 1; max-width: 160px; }

/* ---- Check-in de partido ---- */
.mc-head { text-align: center; margin-bottom: 18px; }

.mc-head h2 { font-size: 22px; margin: 0 0 6px; }

.mc-head .sub { color: var(--smoke-2); font-size: 14px; margin: 0; }

.mc-block { margin-bottom: 18px; }

.mc-block .label {
  display: block;
  font-size: 13px;
  color: var(--smoke-dim);
  margin-bottom: 8px;
}

/* Reusa .mood-row / .mood-btn de la pantalla de mood (components ya
   los estilizan). Variante de 3 columnas para el resultado. */
.mc-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mc-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }

/* Respuesta post-guardado: mismo lenguaje visual que mood-response */
#mcResponse .mr-wrap { min-height: 60vh; }

.mc-skip {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--smoke-dim);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
