/* ============================================================
   components.css — Solo Routines
   Hunter cards, missao items, badges, rotinas, recompensas
   ============================================================ */

/* ── HUNTER CARD (perfil-hunter-card) ── */
.hunter-profile-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: .5rem 0;
}
.hunter-avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-main), var(--blue-mana));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 4px solid var(--purple-glow);
  box-shadow: 0 0 30px rgba(124,58,237,.5), 0 0 60px rgba(124,58,237,.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hunter-avatar-lg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg,rgba(255,255,255,.08),transparent);
}
.hunter-name-lg {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-primary);
  text-align: center;
  text-shadow: 0 0 20px rgba(124,58,237,.4);
}
.hunter-titulo-lg {
  font-family: var(--font-section);
  color: var(--gold-xp);
  font-size: .9rem;
  text-align: center;
}
.hunter-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 20px;
  font-family: var(--font-section);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.4);
  color: var(--purple-light);
}
.hunter-rank-badge.rank-s { background:rgba(245,158,11,.12);border-color:rgba(245,158,11,.5);color:var(--gold-xp); }
.hunter-rank-badge.rank-a { background:rgba(124,58,237,.15);border-color:rgba(124,58,237,.5);color:#a78bfa; }
.hunter-rank-badge.rank-b { background:rgba(6,182,212,.1);border-color:rgba(6,182,212,.4);color:var(--cyan-skill); }
.hunter-rank-badge.rank-c { background:rgba(16,185,129,.1);border-color:rgba(16,185,129,.4);color:#34d399; }
.hunter-rank-badge.rank-d { background:rgba(59,130,246,.1);border-color:rgba(59,130,246,.4);color:#60a5fa; }
.hunter-rank-badge.rank-e { background:rgba(107,114,128,.1);border-color:rgba(107,114,128,.4);color:#9ca3af; }
/* National Level / Arquiteto — acima de S-Rank */
.hunter-rank-badge.rank-national,
.hunter-rank-badge.rank-arquiteto {
  background: linear-gradient(135deg,rgba(251,191,36,.18),rgba(255,255,255,.1));
  border-color: rgba(251,191,36,.8);
  color: #fff;
  text-shadow: 0 0 10px rgba(251,191,36,.8);
  box-shadow: 0 0 16px rgba(251,191,36,.4), 0 0 32px rgba(251,191,36,.15);
  animation: arquitetoGlow 2.5s ease-in-out infinite alternate;
}
@keyframes arquitetoGlow {
  from { box-shadow: 0 0 12px rgba(251,191,36,.3), 0 0 24px rgba(251,191,36,.1); border-color: rgba(251,191,36,.7); }
  to   { box-shadow: 0 0 24px rgba(251,191,36,.7), 0 0 48px rgba(251,191,36,.3); border-color: #fbbf24; }
}

.hunter-stats-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.hunter-stat-item {
  text-align: center;
  flex: 1;
  min-width: 70px;
}
.hunter-stat-value {
  font-family: var(--font-section);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple-glow);
  line-height: 1;
}
.hunter-stat-label {
  font-family: var(--font-section);
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* ── MISSAO ITEM (rotinas, tarefas) ── */
.miss-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.miss-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--purple-main);
  border-radius: 3px 0 0 3px;
  transition: background .25s;
}
.miss-item:hover {
  background: rgba(124,58,237,.06);
  border-color: rgba(124,58,237,.2);
  transform: translateX(3px);
}
.miss-item.concluida {
  opacity: .55;
}
.miss-item.concluida .miss-title {
  text-decoration: line-through;
}
.miss-item.prioridade-URGENTE::before { background: #ef4444; }
.miss-item.prioridade-ALTA::before    { background: var(--orange-high); }
.miss-item.prioridade-NORMAL::before  { background: var(--purple-main); }
.miss-item.prioridade-BAIXA::before   { background: var(--cyan-skill); }

.miss-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(124,58,237,.5);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
}
.miss-checkbox:checked {
  background: var(--purple-main);
  border-color: var(--purple-main);
  box-shadow: 0 0 10px rgba(124,58,237,.4);
}
.miss-checkbox:checked::after {
  content: '✓';
  color: white;
  font-size: .8rem;
  font-weight: 700;
}

.miss-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.miss-body {
  flex: 1;
  min-width: 0;
}
.miss-title {
  font-family: var(--font-section);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.miss-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .25rem;
  flex-wrap: wrap;
}
.miss-xp {
  font-family: var(--font-section);
  font-size: .75rem;
  color: var(--gold-xp);
  font-weight: 600;
}
.miss-cat {
  font-family: var(--font-section);
  font-size: .72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,.05);
  padding: .1rem .5rem;
  border-radius: 4px;
}
.miss-due {
  font-family: var(--font-section);
  font-size: .72rem;
  color: var(--text-muted);
}
.miss-due.atrasada { color: #ef4444; }

.miss-actions {
  display: flex;
  gap: .4rem;
  opacity: 0;
  transition: opacity .2s;
}
.miss-item:hover .miss-actions {
  opacity: 1;
}
.miss-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all .2s;
}
.miss-action-btn:hover {
  background: rgba(124,58,237,.15);
  border-color: rgba(124,58,237,.4);
  color: var(--purple-light);
}
.miss-action-btn.delete:hover {
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.4);
  color: #f87171;
}

/* ── BADGE DE CONQUISTA ── */
.conquista-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  text-align: center;
  transition: all .25s;
  cursor: default;
  position: relative;
}
.conquista-badge:hover {
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124,58,237,.15);
}
.conquista-badge.bloqueada {
  opacity: .35;
  filter: grayscale(1);
}
.conquista-badge.desbloqueada {
  border-color: rgba(245,158,11,.25);
}
.conquista-badge.desbloqueada:hover {
  border-color: rgba(245,158,11,.5);
  box-shadow: 0 8px 25px rgba(245,158,11,.15);
}
.conquista-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.conquista-nome {
  font-family: var(--font-section);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}
.conquista-desc {
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.conquista-xp-badge {
  font-family: var(--font-section);
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-xp);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  padding: .15rem .5rem;
  border-radius: 20px;
}

/* Badge compacto (dashboard) */
.conquista-mini {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  border-radius: 8px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.2);
  transition: all .2s;
}
.conquista-mini:hover {
  background: rgba(245,158,11,.1);
  transform: scale(1.03);
}
.conquista-mini-icon { font-size: 1.4rem; }
.conquista-mini-info {}
.conquista-mini-nome {
  font-family: var(--font-section);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-xp);
}
.conquista-mini-desc {
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--text-muted);
}

/* ── CARD DE ROTINA ── */
.rotina-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.25rem;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.rotina-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-main), var(--cyan-skill));
  opacity: 0;
  transition: opacity .25s;
}
.rotina-card:hover::before { opacity: 1; }
.rotina-card:hover {
  background: rgba(124,58,237,.05);
  border-color: rgba(124,58,237,.2);
  box-shadow: 0 4px 20px rgba(124,58,237,.1);
}
.rotina-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}
.rotina-card-title-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 0;
}
.rotina-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.rotina-card-title {
  font-family: var(--font-section);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rotina-card-sub {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
.rotina-card-actions {
  display: flex;
  gap: .4rem;
  flex-shrink: 0;
}
.rotina-card-body {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.rotina-xp-tag {
  font-family: var(--font-section);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-xp);
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.rotina-moeda-tag {
  font-family: var(--font-section);
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan-skill);
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.2);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.rotina-tipo-tag {
  font-family: var(--font-section);
  font-size: .72rem;
  color: var(--purple-light);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.2);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.rotina-streak {
  font-family: var(--font-section);
  font-size: .78rem;
  color: var(--orange-high);
  font-weight: 600;
}
.rotina-progresso-wrap {
  margin-top: .85rem;
}
.rotina-progresso-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-section);
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .35rem;
}
.rotina-dias-wrap {
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}
.rotina-dia-dot {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-section);
  font-size: .65rem;
  color: var(--text-muted);
  transition: all .2s;
}
.rotina-dia-dot.ativo {
  background: rgba(124,58,237,.2);
  border-color: rgba(124,58,237,.5);
  color: var(--purple-light);
}
.rotina-dia-dot.hoje {
  background: rgba(124,58,237,.35);
  border-color: var(--purple-main);
  color: white;
  box-shadow: 0 0 8px rgba(124,58,237,.4);
}

/* ── CARD DE RECOMPENSA (loja) ── */
/* As regras da Loja do Hunter viviam aqui, soltas. Agora ela tem folha
   propria: css/loja.css. Removidas para nao deixar CSS morto. */
/* ── CARD DE TAREFA (com prioridade) ── */
.tarefa-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--purple-main);
  transition: all .25s ease;
  position: relative;
}
.tarefa-card.prioridade-URGENTE { border-left-color: #ef4444; }
.tarefa-card.prioridade-ALTA    { border-left-color: var(--orange-high); }
.tarefa-card.prioridade-NORMAL  { border-left-color: var(--purple-main); }
.tarefa-card.prioridade-BAIXA   { border-left-color: var(--cyan-skill); }
.tarefa-card:hover {
  background: rgba(124,58,237,.05);
  border-color: rgba(124,58,237,.2);
  transform: translateX(2px);
}
.tarefa-card.concluida {
  opacity: .5;
}
.tarefa-card.concluida .tarefa-titulo { text-decoration: line-through; }
.tarefa-check-wrap {
  padding-top: .15rem;
}
.tarefa-body {
  flex: 1;
  min-width: 0;
}
.tarefa-titulo {
  font-family: var(--font-section);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.tarefa-desc {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .2rem;
  line-height: 1.4;
}
.tarefa-meta {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-top: .4rem;
  flex-wrap: wrap;
}
.tarefa-prioridade-chip {
  font-family: var(--font-section);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .55rem;
  border-radius: 20px;
  letter-spacing: .5px;
}
.chip-urgente { background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);color:#f87171; }
.chip-alta    { background:rgba(249,115,22,.1);border:1px solid rgba(249,115,22,.3);color:#fb923c; }
.chip-normal  { background:rgba(124,58,237,.1);border:1px solid rgba(124,58,237,.3);color:#a78bfa; }
.chip-baixa   { background:rgba(6,182,212,.1);border:1px solid rgba(6,182,212,.3);color:var(--cyan-skill); }

/* ── STAT CARD (dashboard) — Placas de Rodovia ── */

/* ── Animações de energia ── */
@keyframes electric-red {
  0%,100% { box-shadow: 0 0 8px #ef4444, 0 0 20px rgba(239,68,68,.4), inset 0 0 30px rgba(239,68,68,.06); border-color: rgba(239,68,68,.55); }
  20%      { box-shadow: 0 0 3px #ef4444, 0 0 8px rgba(239,68,68,.2),  inset 0 0 10px rgba(239,68,68,.02); border-color: rgba(239,68,68,.25); }
  40%      { box-shadow: 0 0 16px #ef4444,0 0 40px rgba(239,68,68,.6), inset 0 0 50px rgba(239,68,68,.1);  border-color: rgba(239,68,68,.8); }
  70%      { box-shadow: 0 0 6px #ef4444, 0 0 12px rgba(239,68,68,.3), inset 0 0 20px rgba(239,68,68,.04); border-color: rgba(239,68,68,.4); }
}
@keyframes electric-gold {
  0%,100% { box-shadow: 0 0 8px #f59e0b, 0 0 20px rgba(245,158,11,.4), inset 0 0 30px rgba(245,158,11,.06); border-color: rgba(245,158,11,.5); }
  30%      { box-shadow: 0 0 3px #f59e0b, 0 0 8px rgba(245,158,11,.2),  inset 0 0 10px rgba(245,158,11,.02); border-color: rgba(245,158,11,.2); }
  55%      { box-shadow: 0 0 20px #f59e0b,0 0 50px rgba(245,158,11,.7), inset 0 0 60px rgba(245,158,11,.12); border-color: rgba(245,158,11,.9); }
}
@keyframes electric-cyan {
  0%,100% { box-shadow: 0 0 8px #06b6d4, 0 0 20px rgba(6,182,212,.4),  inset 0 0 30px rgba(6,182,212,.06); border-color: rgba(6,182,212,.5); }
  25%      { box-shadow: 0 0 3px #06b6d4, 0 0 8px rgba(6,182,212,.2),   inset 0 0 10px rgba(6,182,212,.02); border-color: rgba(6,182,212,.2); }
  60%      { box-shadow: 0 0 18px #06b6d4,0 0 45px rgba(6,182,212,.65), inset 0 0 55px rgba(6,182,212,.1);  border-color: rgba(6,182,212,.85); }
}
@keyframes spark-float {
  0%   { transform: translateY(0)   scaleY(1)   opacity(1); }
  100% { transform: translateY(-18px) scaleY(.4) opacity(0); }
}
@keyframes plaque-bob-up {
  0%,100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
  50%      { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.5); }
}
@keyframes plaque-bob-mid {
  0%,100% { transform: translateY(0); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
  50%      { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,0,0,0.4); }
}
@keyframes plaque-bob-down {
  0%,100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
  50%      { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.5); }
}

/* Container */
.stat-plaques {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 0.5rem 0.5rem;
  overflow: visible;
}

/* Placa base */
.stat-plaque {
  position: relative;
  border-radius: 8px;
  padding: 1rem 1.2rem 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: visible;        /* deixa o glow vazar */
  cursor: default;
  border: 1px solid transparent;
  /* transform e animação definidos por variante */
}

/* Pattern diagonal (hatching de estrada) */
.stat-plaque::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(
    -48deg,
    rgba(255,255,255,.03) 0px,
    rgba(255,255,255,.03) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
  z-index: 1;
}

/* Pino de suporte (imita parafuso de placa de rodovia) */
.stat-plaque::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: #0d0d1a;
  box-shadow: 0 0 6px currentColor;
  opacity: .7;
  z-index: 5;
}

/* Filhos acima dos pseudo-elementos */
.stat-plaque > * { position: relative; z-index: 2; }

/* ── Placa 1: MISSÕES HOJE — Chamas Vermelhas — inclinada para cima ── */
.stat-plaque--missoes {
  background: linear-gradient(112deg, #200808 0%, #3d1010 35%, #2a0c0c 70%, #1a0808 100%);
  border: 1px solid rgba(239,68,68,.55);
  color: #fca5a5;
  animation: electric-red 2.8s ease-in-out infinite, plaque-bob-up 4s ease-in-out infinite;
  transform-origin: right center;
}
.stat-plaque--missoes::after { color: #ef4444; }
.stat-plaque--missoes .stat-plaque-icon {
  background: rgba(239,68,68,.18);
  border: 1px solid rgba(239,68,68,.4);
  color: #f87171;
}
.stat-plaque--missoes .stat-value { color: #fca5a5; text-shadow: 0 0 12px rgba(239,68,68,.6); }
.stat-plaque--missoes .stat-label { color: rgba(252,165,165,.6); }
.stat-plaque--missoes .stat-plaque-accent {
  background: linear-gradient(180deg, transparent, #ef4444 30%, #ff6b6b 50%, #ef4444 70%, transparent);
  box-shadow: 0 0 12px #ef4444, 0 0 4px #fff;
  animation: electric-red 1.4s ease-in-out infinite;
}

/* ── Placa 2: TOTAL CONCLUÍDAS — Elétrico Dourado — levemente inclinada ── */
.stat-plaque--total {
  background: linear-gradient(108deg, #1a1200 0%, #302000 40%, #221800 70%, #160f00 100%);
  border: 1px solid rgba(245,158,11,.5);
  color: #fde68a;
  animation: electric-gold 3.3s ease-in-out infinite 0.6s, plaque-bob-mid 4.5s ease-in-out infinite 0.8s;
  transform-origin: center center;
}
.stat-plaque--total::after { color: #f59e0b; }
.stat-plaque--total .stat-plaque-icon {
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.4);
  color: #fbbf24;
}
.stat-plaque--total .stat-value { color: #fde68a; text-shadow: 0 0 12px rgba(245,158,11,.7); }
.stat-plaque--total .stat-label { color: rgba(253,230,138,.55); }
.stat-plaque--total .stat-plaque-accent {
  background: linear-gradient(180deg, transparent, #f59e0b 30%, #fcd34d 50%, #f59e0b 70%, transparent);
  box-shadow: 0 0 12px #f59e0b, 0 0 4px #fff8;
  animation: electric-gold 1.65s ease-in-out infinite;
}

/* ── Placa 3: ROTINAS ATIVAS — Elétrico Ciano — inclinada para baixo ── */
.stat-plaque--rotinas {
  background: linear-gradient(104deg, #001818 0%, #002828 38%, #001d1d 68%, #001010 100%);
  border: 1px solid rgba(6,182,212,.5);
  color: #a5f3fc;
  animation: electric-cyan 2.5s ease-in-out infinite 1.2s, plaque-bob-down 3.8s ease-in-out infinite 1.5s;
  transform-origin: right center;
}
.stat-plaque--rotinas::after { color: #06b6d4; }
.stat-plaque--rotinas .stat-plaque-icon {
  background: rgba(6,182,212,.18);
  border: 1px solid rgba(6,182,212,.4);
  color: #22d3ee;
}
.stat-plaque--rotinas .stat-value { color: #a5f3fc; text-shadow: 0 0 12px rgba(6,182,212,.7); }
.stat-plaque--rotinas .stat-label { color: rgba(165,243,252,.55); }
.stat-plaque--rotinas .stat-plaque-accent {
  background: linear-gradient(180deg, transparent, #06b6d4 30%, #67e8f9 50%, #06b6d4 70%, transparent);
  box-shadow: 0 0 12px #06b6d4, 0 0 4px #fff6;
  animation: electric-cyan 1.25s ease-in-out infinite;
}

/* Ícone da placa — chanfrado */
.stat-plaque-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0%,100% 0%,100% calc(100% - 6px),calc(100% - 6px) 100%,0% 100%,0% 6px);
  transition: box-shadow .2s;
}
.stat-plaque-icon svg { stroke: currentColor; }

/* Valor numérico */
.stat-plaque .stat-value {
  font-family: var(--font-section);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

/* Rótulo */
.stat-plaque .stat-label {
  font-family: var(--font-section);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .28rem;
}

/* Barra de acento na borda esquerda */
.stat-plaque-accent {
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 3px;
  border-radius: 0 2px 2px 0;
  z-index: 3;
}



/* compat: mantém .stat-card e .stat-icon para outras áreas que usem */
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all .2s;
}
.stat-card:hover {
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.25);
}
.stat-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,.1);
  border-radius: 10px;
}
.stat-value {
  font-family: var(--font-section);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-glow);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-section);
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .5px;
  margin-top: .2rem;
}

/* ── GERENCIAL STAT CARD ── */
.gerencial-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all .2s;
}
.gerencial-stat:hover {
  background: rgba(124,58,237,.05);
  border-color: rgba(124,58,237,.2);
}
.gerencial-stat-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.gerencial-stat-value {
  font-family: var(--font-section);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-glow);
  line-height: 1;
}
.gerencial-stat-label {
  font-family: var(--font-section);
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .35rem;
  letter-spacing: .5px;
}

/* ── XP FLOAT (animacao) ── */
#xp-float-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
.xp-float {
  position: absolute;
  font-family: var(--font-section);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-xp);
  text-shadow: 0 0 10px rgba(245,158,11,.6);
  pointer-events: none;
  animation: xpFloat 1.5s ease-out forwards;
}
@keyframes xpFloat {
  0%   { opacity:1; transform:translateY(0) scale(1); }
  50%  { opacity:1; transform:translateY(-40px) scale(1.2); }
  100% { opacity:0; transform:translateY(-80px) scale(.8); }
}

/* ── EMPTY STATE ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-family: var(--font-section);
  font-size: .9rem;
  text-align: center;
}
.empty-icon {
  font-size: 2.5rem;
  opacity: .4;
}

/* ── MODAL MESSAGE ── */
.modal-message {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── LOADING SPINNER ── */
.loading-spinner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(124,58,237,.2);
  border-top-color: var(--purple-main);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── TABLE ── */
.table-container {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.07);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: .85rem;
}
thead th {
  padding: .85rem 1rem;
  text-align: left;
  font-family: var(--font-section);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
tbody td {
  padding: .85rem 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td {
  background: rgba(124,58,237,.04);
}

/* ── CHIPS & TAGS ── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: .25rem .7rem;
  border-radius: 20px;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  color: var(--purple-light);
  font-family: var(--font-section);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.chip-green {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.3);
  color: #34d399;
}
.chip-gold {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.3);
  color: var(--gold-xp);
}
.chip-red {
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.3);
  color: #f87171;
}

/* ── TABS ── */
.tabs {
  display: flex;
  gap: .4rem;
  padding: .3rem;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.tab-btn {
  padding: .5rem 1.25rem;
  border-radius: 7px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-section);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .5px;
}
.tab-btn:hover {
  color: var(--text-secondary);
  background: rgba(255,255,255,.05);
}
.tab-btn.active {
  background: var(--purple-main);
  color: white;
  box-shadow: 0 2px 10px rgba(124,58,237,.35);
}

/* ── CONQUISTA TOAST ── */
#conquista-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 10000;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
#conquista-toast:not(.hidden) {
  transform: translateX(-50%) translateY(0);
}
.conquista-toast-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(5,5,8,.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,158,11,.4);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(245,158,11,.2);
  min-width: 280px;
}
.conquista-toast-icon { font-size: 2rem; }
.conquista-toast-title {
  font-family: var(--font-section);
  font-size: .75rem;
  color: var(--gold-xp);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.conquista-toast-name {
  font-family: var(--font-section);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: .1rem;
}

/* ── LEVEL UP OVERLAY ── */
#level-up-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
}
#level-up-overlay.hidden { display: none; }
.level-up-content {
  text-align: center;
  position: relative;
}
.level-up-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.4) 0%, transparent 70%);
  animation: levelGlow 1.5s ease-in-out infinite alternate;
}
@keyframes levelGlow {
  from { opacity: .5; transform: scale(.9); }
  to   { opacity: 1;  transform: scale(1.1); }
}
.level-up-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-xp);
  text-shadow: 0 0 40px rgba(245,158,11,.7);
  animation: levelPulse .6s ease-in-out infinite alternate;
  position: relative;
}
@keyframes levelPulse {
  from { transform: scale(.98); }
  to   { transform: scale(1.02); }
}
.level-up-number {
  font-family: var(--font-title);
  font-size: 6rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 60px rgba(124,58,237,.8);
  line-height: 1;
  position: relative;
}
.level-up-sub {
  font-family: var(--font-section);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: .5rem;
  position: relative;
}

/* ── SORT BUTTONS ── */
[data-ordem] { transition: color .2s, background .2s, border-color .2s; }
[data-ordem].active {
  color: var(--purple-glow) !important;
  background: rgba(124,58,237,.2) !important;
  border-color: var(--purple-main) !important;
}

/* ── ROTINA CARD RICH ── */
.rotina-card-rich { transition: transform .2s, box-shadow .2s; }
.rotina-card-rich:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.rotina-card-rich[data-status="CONCLUIDA"]:hover { box-shadow: 0 6px 24px rgba(16,185,129,.2); }

/* ── CONQUISTA BADGE ── */
.conquista-badge {
  background: var(--bg-card); border: 1px solid rgba(100,116,139,.2);
  border-radius: .75rem; padding: 1rem; text-align: center;
  transition: all .2s; position: relative; overflow: hidden;
}
.conquista-badge.desbloqueada { border-color: rgba(245,158,11,.3); background: linear-gradient(135deg,rgba(245,158,11,.05),var(--bg-card)); }
.conquista-badge.bloqueada { opacity: .5; filter: grayscale(.7); }
.conquista-badge.bloqueada::after { content: '🔒'; position: absolute; top: .5rem; right: .5rem; font-size: .8rem; }
.conquista-icon  { font-size: 2rem; margin-bottom: .4rem; }
.conquista-nome  { font-family: var(--font-section); font-size: .8rem; font-weight: 700; color: var(--text-primary); }
.conquista-desc  { font-size: .7rem; color: var(--text-muted); margin-top: .2rem; }
.conquista-xp-badge {
  display: inline-block; margin-top: .4rem;
  font-family: var(--font-section); font-size: .65rem; font-weight: 700;
  padding: .15rem .5rem; border-radius: 100px;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.4); color: #10b981;
}

/* ═══════════════════════════════════════════════════════════
   CONQUISTA — SISTEMA DE ANIMAÇÕES
   ═══════════════════════════════════════════════════════════ */

/* ── Card: entrada em cascata ─────────────────────────────── */
@keyframes conquista-enter {
  from { opacity: 0; transform: translateY(28px) scale(0.88); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0); }
}

/* ── Card: materialização (construção) ──────────────────── */
@keyframes conquista-materialize {
  0%   { opacity: 0; clip-path: polygon(50% 50%,50% 50%,50% 50%,50% 50%);
         transform: scale(.4) rotate(-12deg); filter: blur(18px) brightness(5); }
  25%  { opacity: .9; clip-path: polygon(0 50%,100% 50%,100% 50%,0 50%);
         transform: scale(.75) rotate(-6deg); filter: blur(7px) brightness(2.5); }
  55%  { clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
         transform: scale(1.08) rotate(3deg); filter: blur(1px) brightness(1.6); }
  78%  { transform: scale(.95) rotate(-1deg); filter: blur(0) brightness(1.2); }
  100% { opacity: 1; clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
         transform: scale(1) rotate(0); filter: blur(0) brightness(1); }
}

/* ── Card desbloqueado: pulso dourado contínuo ───────────── */
@keyframes conquista-gold-pulse {
  0%,100% { box-shadow: 0 0 8px rgba(245,158,11,.12),  0 0 0 1px rgba(245,158,11,.08); }
  50%     { box-shadow: 0 0 28px rgba(245,158,11,.45), 0 0 0 1px rgba(245,158,11,.28),
                        inset 0 0 18px rgba(245,158,11,.06); }
}

/* ── Ícone: brilho ao passar o mouse ─────────────────────── */
@keyframes icon-glow-pulse {
  0%,100% { filter: drop-shadow(0 0 4px rgba(245,158,11,.4)); transform: scale(1); }
  50%     { filter: drop-shadow(0 0 14px rgba(245,158,11,.9)); transform: scale(1.18) rotate(8deg); }
}

/* ── Partícula flutuante ─────────────────────────────────── */
@keyframes particle-burst {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx,0px), var(--ty,-80px)) scale(.2); }
}

/* ── Modal: fundo escurecendo ────────────────────────────── */
@keyframes unlock-backdrop-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes unlock-backdrop-out { from { opacity: 1; } to { opacity: 0; } }

/* ── Modal: card saltando na tela ───────────────────────── */
@keyframes unlock-card-in {
  0%   { transform: scale(0) rotate(-25deg); opacity: 0; filter: blur(24px); }
  55%  { transform: scale(1.12) rotate(4deg); opacity: 1; filter: blur(0); }
  75%  { transform: scale(.94) rotate(-2deg); }
  100% { transform: scale(1)   rotate(0);    opacity: 1; }
}
@keyframes unlock-card-out {
  from { transform: scale(1); opacity: 1; filter: blur(0); }
  to   { transform: scale(.08) translateY(-160px); opacity: 0; filter: blur(14px); }
}

/* ── Modal: medalha girando ao entrar ───────────────────── */
@keyframes medal-flip-in {
  0%   { transform: rotateY(180deg) scale(.3); opacity: 0; }
  60%  { transform: rotateY(0deg)   scale(1.2); opacity: 1; }
  100% { transform: rotateY(0deg)   scale(1);   opacity: 1; }
}

/* ── Modal: textos deslizando ───────────────────────────── */
@keyframes text-slide-up {
  from { opacity: 0; transform: translateY(18px) scale(.85); letter-spacing: .4em; }
  to   { opacity: 1; transform: translateY(0)    scale(1);   letter-spacing: .12em; }
}
@keyframes xp-pop {
  from { opacity: 0; transform: translateY(12px) scale(.8); }
  to   { opacity: 1; transform: translateY(0)    scale(1);  }
}

/* ── Modal: varredura de brilho ─────────────────────────── */
@keyframes shine-sweep {
  from { background-position: -200% center; }
  to   { background-position: 300% center; }
}

/* ── Classes aplicadas via JS ────────────────────────────── */
.conquista-badge.c-entering,
.conquista-mini.c-entering {
  opacity: 0;
  animation: conquista-enter 0.55s cubic-bezier(0.34,1.56,.64,1) forwards;
  animation-delay: var(--c-delay, 0ms);
}
.conquista-badge.c-materializing,
.conquista-mini.c-materializing {
  opacity: 0;
  animation: conquista-materialize 1.1s cubic-bezier(0.34,1.56,.64,1) forwards;
  animation-delay: var(--c-delay, 0ms);
}
.conquista-badge.desbloqueada.c-pulsing,
.conquista-mini.c-pulsing {
  animation: conquista-gold-pulse 2.8s ease-in-out infinite;
  animation-delay: var(--c-pulse-delay, 0s);
}

/* ═══ RELICÁRIO — selo permanente de conquista ══════════════
   O card do quadro agora carrega a medalha em miniatura e
   acabamento de relíquia dourada. */
.conquista-mini {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: .85rem !important;
  padding: .7rem 1rem !important;
  border-radius: 14px !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(160deg, #16121f 0%, #0d0d1a 55%, #171208 100%) padding-box,
    linear-gradient(140deg, rgba(251,191,36,.65), rgba(120,53,15,.5) 45%, rgba(251,191,36,.55)) border-box !important;
  overflow: hidden;
}
.conquista-mini::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,240,190,.14) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}
.conquista-mini:hover::after { transform: translateX(120%); }
.conquista-mini:hover { transform: translateY(-2px); }

.conquista-mini .conquista-mini-nome {
  font-family: var(--font-section);
  font-weight: 700;
  background: linear-gradient(100deg, #fde68a, #fbbf24 45%, #fff6d8 60%, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.conquista-mini:hover .conquista-mini-nome { animation: cq-shimmer 1.6s linear infinite; }

/* Medalha em miniatura (SVG) */
.cq-medalhinha {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(251,191,36,.45));
  transition: transform .25s ease, filter .25s ease;
}
.conquista-mini:hover .cq-medalhinha {
  transform: scale(1.12) rotate(-4deg);
  filter: drop-shadow(0 0 12px rgba(251,191,36,.8));
}
.cq-medalhinha svg { display: block; }
.cq-medalhinha .cq-svg-star { animation: cq-anel-girar 30s linear infinite; }
.cq-medalhinha .cq-svg-brilho { animation: cq-anel-girar 4s linear infinite; }
.cq-medalhinha-ico {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.7));
  line-height: 1;
}

/* CORREÇÃO (herança Gemini): quando entrada e pulso coexistem, o pulso
   sobrescrevia a animação de entrada e o card ficava PRESO em opacity:0.
   Combinadas: entra primeiro, pulsa depois. */
.conquista-mini.c-pulsing.c-entering,
.conquista-badge.desbloqueada.c-pulsing.c-entering {
  animation:
    conquista-enter 0.55s cubic-bezier(0.34,1.56,.64,1) var(--c-delay, 0ms) forwards,
    conquista-gold-pulse 2.8s ease-in-out calc(var(--c-delay, 0ms) + 800ms) infinite;
}
.conquista-mini.c-pulsing.c-materializing,
.conquista-badge.desbloqueada.c-pulsing.c-materializing {
  animation:
    conquista-materialize 1.1s cubic-bezier(0.34,1.56,.64,1) var(--c-delay, 0ms) forwards,
    conquista-gold-pulse 2.8s ease-in-out calc(var(--c-delay, 0ms) + 1400ms) infinite;
}
.conquista-badge.desbloqueada:hover .conquista-icon {
  animation: icon-glow-pulse 0.7s ease forwards;
}

/* ── Overlay de desbloqueio ──────────────────────────────── */
.cu-overlay {
  position: fixed; inset: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,3,10,.93);
  backdrop-filter: blur(18px);
  animation: unlock-backdrop-in .35s ease forwards;
}
.cu-overlay.closing { animation: unlock-backdrop-out .4s ease forwards; }

.cu-card {
  position: relative;
  background: linear-gradient(140deg, rgba(13,13,26,.98) 0%, rgba(35,10,70,.98) 100%);
  border: 1px solid rgba(245,158,11,.45);
  border-radius: 28px;
  padding: 3.2rem 2.8rem 2.6rem;
  text-align: center;
  max-width: 400px; width: 92%;
  box-shadow:
    0 0 90px rgba(245,158,11,.3),
    0 0 200px rgba(124,58,237,.18),
    inset 0 1px 0 rgba(245,158,11,.25);
  animation: unlock-card-in .75s cubic-bezier(0.34,1.56,.64,1) forwards;
  overflow: hidden;
}
.cu-card.closing { animation: unlock-card-out .45s cubic-bezier(.55,.06,.68,.19) forwards; }

.cu-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg,transparent 25%,rgba(245,158,11,.1) 50%,transparent 75%);
  background-size: 300% 100%;
  animation: shine-sweep 2.5s ease-in-out 1s infinite;
}

.cu-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cu-particle {
  position: absolute; border-radius: 50%;
  animation: particle-burst 1.2s ease-out forwards;
}

.cu-label {
  font-family: var(--font-section); font-size: .68rem; font-weight: 800;
  letter-spacing: .35em; color: var(--gold-xp); text-transform: uppercase;
  margin-bottom: 1.6rem; opacity: 0;
  animation: text-slide-up .5s ease .75s forwards;
}
.cu-icon {
  font-size: 5.5rem; line-height: 1; display: block;
  margin-bottom: 1.1rem; opacity: 0;
  filter: drop-shadow(0 0 24px rgba(245,158,11,.7));
  animation: medal-flip-in .85s cubic-bezier(0.34,1.56,.64,1) .35s forwards;
}
.cu-title {
  font-family: var(--font-section); font-size: 1.5rem; font-weight: 700;
  color: #e2e8f0; margin-bottom: .45rem; opacity: 0;
  animation: text-slide-up .5s ease .95s forwards;
}
.cu-desc {
  font-size: .88rem; color: var(--text-muted);
  margin-bottom: 1.6rem; opacity: 0;
  animation: xp-pop .4s ease 1.15s forwards;
}
.cu-xp {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.13); border: 1px solid rgba(245,158,11,.35);
  border-radius: 100px; padding: .45rem 1.4rem;
  font-family: var(--font-section); font-size: 1rem; font-weight: 700;
  color: var(--gold-xp); opacity: 0;
  animation: xp-pop .4s ease 1.35s forwards;
}
.cu-skip {
  display: block; margin-top: 1.4rem;
  font-size: .72rem; color: var(--text-muted); cursor: pointer;
  opacity: 0; animation: xp-pop .4s ease 1.8s forwards;
  background: none; border: none; font-family: var(--font-body);
  transition: color .2s;
}
.cu-skip:hover { color: var(--text-secondary); }