/* ============================================================
   ACADEMIA DE CRACKS · History Screen
   ============================================================ */

.hist-screen { background: var(--carbon); }
.hist-screen .scroll { padding-bottom: 24px; }

.hist-header-card {
  margin: 0 16px 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(30, 155, 255,0.04));
  border: 1px solid var(--glass-border);
  border-radius: 18px;
}
.hist-header-card h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--smoke-dim); margin-bottom: 14px;
}
.hist-totals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hist-total {
  text-align: center;
  padding: 12px 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.hist-total .v { font-family: 'Chakra Petch', sans-serif; font-weight: 700; color: var(--neon); font-size: 22px; line-height: 1; }
.hist-total .k { font-family: 'Chakra Petch', sans-serif; font-size: 9px; color: var(--smoke-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* Day groups */
.hist-day { margin: 0 16px 16px; }
.hist-day-head { display: flex; justify-content: space-between; align-items: center; padding: 0 4px 8px; }
.hist-date { display: flex; gap: 10px; align-items: baseline; }
.hist-date-num  { font-family: 'Chakra Petch', sans-serif; font-weight: 700; color: var(--neon); font-size: 22px; line-height: 1; }
.hist-date-meta { font-family: 'Chakra Petch', sans-serif; font-size: 11px; color: var(--smoke-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.hist-day-xp    { font-family: 'Chakra Petch', sans-serif; font-weight: 700; color: var(--neon); font-size: 14px; background: rgba(30, 155, 255,0.12); padding: 4px 10px; border-radius: 100px; }

.hist-entries { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; overflow: hidden; }
.hist-entry   { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-top: 1px solid var(--glass-border); }
.hist-entry:first-child { border-top: 0; }
.hist-emoji   { width: 36px; height: 36px; background: var(--glass-2); border-radius: 10px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.hist-info    { flex: 1; min-width: 0; }
.hist-info h5 { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 2px; letter-spacing: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hist-info p  { font-family: 'Chakra Petch', sans-serif; font-size: 10px; color: var(--smoke-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.hist-xp      { font-family: 'Chakra Petch', sans-serif; font-weight: 700; color: var(--neon); font-size: 13px; flex-shrink: 0; }

/* Empty state */
.hist-empty {
  margin: 32px 16px;
  padding: 40px 20px;
  text-align: center;
  background: var(--glass);
  border: 1px dashed var(--glass-border-hi);
  border-radius: 18px;
}
.hist-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.hist-empty h4   { font-family: 'Chakra Petch', sans-serif; font-size: 16px; margin-bottom: 8px; }
.hist-empty p    { font-size: 13px; color: var(--smoke-dim); line-height: 1.5; max-width: 240px; margin: 0 auto; }
