
.status-badge.slp {
  background: rgba(60,80,180,0.25);
  border: 1px solid rgba(100,140,220,0.5);
  color: #a0b8ff;
  animation: slp-badge-pulse 1.4s ease-in-out infinite alternate;
}
@keyframes slp-badge-pulse {
  from { background:rgba(50,70,160,0.18); box-shadow:none; }
  to   { background:rgba(80,110,200,0.35); box-shadow:0 0 6px rgba(100,140,220,0.5); }
}
/* ============================================================
   BOSS RAID — STATUS MODAL
   Layout 3 colunas: Info | Stats & IVs | Moves
   Sem scroll interno — tudo visível em tela única
   ============================================================ */

/* ── OVERLAY ─────────────────────────────────────────────── */
.raid-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.raid-modal-overlay.show { display: flex; }

/* ── MODAL CONTAINER ─────────────────────────────────────── */
.raid-modal-content.raid-modal-status-content {
  background: rgba(14, 14, 18, 0.98);
  border: 2px solid #ff7500;
  border-radius: 16px;
  width: 98vw;
  max-width: 1160px;
  max-height: 96vh;
  overflow: hidden;
  padding: 40px 28px 24px;
  position: relative; /* necessário para as setas ficarem dentro do modal */
  box-shadow: 0 12px 48px rgba(255, 117, 0, 0.28);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { transform: translateY(-28px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── BOTÃO FECHAR ────────────────────────────────────────── */
.raid-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid #ff0000;
  color: #fff;
  font-size: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.raid-modal-close:hover { background: rgba(255, 0, 0, 0.5); }

/* ── GRID 3 COLUNAS — sem scroll interno ────────────────── */
.raid-status-3col {
  display: grid;
  grid-template-columns: 210px 1fr 1fr;
  gap: 0;
  align-items: start;
}

.raid-col {
  padding: 0 18px;
  overflow: visible;
}
.raid-col:first-child { padding-left: 0; }
.raid-col:last-child  { padding-right: 0; }

.raid-col-stats {
  border-left: 1px solid rgba(255, 117, 0, 0.2);
  border-right: 1px solid rgba(255, 117, 0, 0.2);
}

/* ── COLUNA 1 — HEADER POKÉMON ───────────────────────────── */
.raid-status-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(255, 117, 0, 0.25);
}
.raid-status-img {
  width: 84px; height: 84px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid rgba(255, 117, 0, 0.5);
  background: rgba(255, 117, 0, 0.05);
}
.raid-status-nome {
  color: #ffad00; font-size: 1.2rem; font-weight: 700;
  margin: 0; text-align: center;
}
.raid-status-nivel {
  color: #aaa; font-size: 0.85rem; font-weight: 600; margin: 0;
}
.raid-status-tipos {
  display: flex; gap: 6px; justify-content: center; margin: 2px 0;
}

/* ── BARRAS LOYALTY / XP ─────────────────────────────────── */
.raid-status-barra-wrap { margin-bottom: 8px; }
.raid-status-barra-label {
  display: flex; justify-content: space-between;
  color: #bbb; font-size: 0.72rem; font-weight: 600; margin-bottom: 3px;
}
.raid-status-barra {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.raid-status-barra-fill {
  height: 100%; border-radius: 3px;
  transition: width 0.6s ease; min-width: 3px;
}
.raid-status-barra-fill.lealdade {
  background: linear-gradient(90deg, #c0392b, #e74c3c, #ff6b6b);
}
.raid-status-barra-fill.xp {
  background: linear-gradient(90deg, #27ae60, #2ecc71, #a8e063);
}
/* HP bar states */
.raid-status-barra-fill.hp-ok {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}
.raid-status-barra-fill.hp-low {
  background: linear-gradient(90deg, #f39c12, #f1c40f);
}
.raid-status-barra-fill.hp-critical {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  animation: hp-pulse 1.2s ease-in-out infinite;
}
@keyframes hp-pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.5; }
}
/* Release (delete) button */
.release-btn {
  margin-top: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(231,76,60,0.4);
  color: #e74c3c;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.75rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, border-color 0.2s;
}
.release-btn:hover {
  background: rgba(192,57,43,0.3);
  border-color: #e74c3c;
}

/* ── NATURE & ABILITY ────────────────────────────────────── */
.raid-nature-wrap {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin: 7px 0; padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,117,0,0.2);
  border-radius: 8px; font-size: 0.76rem;
}
.raid-nature-label  { color: #888; font-weight: 600; white-space: nowrap; }
.raid-nature-nome   { color: #ffad00; font-weight: 700; }
.raid-nature-efeito {
  margin-left: auto; display: flex; align-items: center;
  gap: 4px; font-size: 0.71rem;
}
.nature-up     { color: #2ecc71; font-weight: 700; }
.nature-down   { color: #e74c3c; font-weight: 700; }
.nature-sep    { color: #666; }
.nature-neutro { color: #888; font-style: italic; font-size: 0.71rem; }

/* ── ABILITY ─────────────────────────────────────────────── */
.raid-ability-wrap {
  position: relative;
  cursor: help;
}
.ability-nome.ability-hidden { color: #c084fc; }
.raid-nature-efeito.ability-desc {
  color: #c084fc; font-size: 0.66rem; font-style: italic;
}

/* Tooltip customizado — único, sem tooltip nativo do browser */
.raid-ability-wrap::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #12121e;
  color: #e0e0e0;
  font-size: 0.69rem; line-height: 1.55;
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid rgba(255,117,0,0.45);
  white-space: normal; width: 200px; text-align: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 99999;
  box-shadow: 0 6px 22px rgba(0,0,0,0.7);
}
.raid-ability-wrap:hover::after { opacity: 1; }

/* ── TYPE MATCHUPS ───────────────────────────────────────── */
.raid-efet-titulo {
  color: #ffad00; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  margin: 12px 0 6px;
}
.raid-efet-grupo {
  display: flex; align-items: flex-start; gap: 5px; margin-bottom: 5px;
}
.raid-efet-label {
  font-size: 0.62rem; font-weight: 700;
  min-width: 48px; padding-top: 3px;
  text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap;
}
.fraco-label   { color: #e74c3c; }
.resiste-label { color: #2ecc71; }
.imune-label   { color: #95a5a6; }
.raid-efet-badges { display: flex; flex-wrap: wrap; gap: 4px; }

/* ── BADGES DE TIPO ──────────────────────────────────────── */
.tipo-badge {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.5px;
  color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5); line-height: 1.6;
}
.raid-slot-tipos {
  display: flex; gap: 3px; justify-content: center; margin: 2px 0;
}
.raid-slot-tipos .tipo-badge { font-size: 0.5rem; padding: 1px 5px; }
.tipo-badge-efet   { font-size: 0.58rem; padding: 2px 6px; }
.tipo-badge-resiste {
  background: transparent !important;
  border: 1.5px solid;
  text-shadow: none;
}
.tipo-badge-imune {
  background: transparent !important;
  border: 1.5px dashed;
  text-shadow: none;
  opacity: 0.7;
}

/* ── COLUNA 2 — STATS & IVs ──────────────────────────────── */
.raid-status-iv-titulo {
  color: #ffad00; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px; margin: 0 0 10px;
}
.raid-iv-tabela {
  width: 100%; border-collapse: collapse;
  border-radius: 8px; overflow: hidden; font-size: 0.8rem;
}
.raid-iv-tabela thead tr { background: rgba(255,117,0,0.18); }
.raid-iv-tabela thead th {
  color: #ffad00; font-weight: 700; font-size: 0.64rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 8px; text-align: left;
}
.raid-iv-tabela thead th.th-center { text-align: center; }
.raid-iv-tabela tbody tr:nth-child(odd)  { background: rgba(255,255,255,0.05); }
.raid-iv-tabela tbody tr:nth-child(even) { background: rgba(0,0,0,0.22); }
.raid-iv-tabela tbody tr:hover           { background: rgba(255,117,0,0.08); }
.iv-col-label {
  color: #ddd; font-weight: 700; padding: 10px 8px;
  white-space: nowrap; width: 55px;
}
.iv-col-stat  { color: #fff; font-weight: 700; text-align: center; padding: 10px 6px; min-width: 40px; vertical-align: middle; }
.iv-col-valor { color: #aaa; font-weight: 700; text-align: center; padding: 10px 6px; min-width: 30px; }
.iv-col-valor.iv-max {
  color: #ffe033; text-shadow: 0 0 6px rgba(255,224,0,0.4);
}
.iv-col-nature { text-align: center; padding: 10px 8px 10px 4px; min-width: 24px; }
.nat-up   { color: #2ecc71; font-size: 0.8rem; font-weight: 800; }
.nat-down { color: #e74c3c; font-size: 0.8rem; font-weight: 800; }

/* Barras visuais de stat */
.raid-stat-bars { margin-top: 18px; }
.raid-stat-bar-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 7px;
}
.raid-stat-bar-label {
  color: #777; font-size: 0.66rem; font-weight: 700;
  width: 48px; text-align: right; flex-shrink: 0;
}
.raid-stat-bar-track {
  flex: 1; height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px; overflow: hidden;
}
.raid-stat-bar-fill { height: 100%; border-radius: 99px; transition: width 0.6s ease; }
.raid-stat-bar-val {
  color: #bbb; font-size: 0.66rem; font-weight: 700;
  width: 26px; text-align: right; flex-shrink: 0;
}

/* ── COLUNA 3 — GOLPES ───────────────────────────────────── */
.raid-golpes-grid { display: flex; flex-direction: column; gap: 8px; }
.raid-golpe-slot {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  transition: background 0.18s;
}
.raid-golpe-slot:hover { background: rgba(255,255,255,0.07); }
.raid-golpe-slot.vazio {
  border: 1px dashed rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  min-height: 48px;
}
.golpe-vazio-txt { color: #333; font-size: 0.7rem; font-style: italic; }
.golpe-header {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px; flex-wrap: wrap;
}
.golpe-tipo-badge {
  font-size: 0.54rem; font-weight: 800; letter-spacing: 0.5px;
  padding: 1px 5px; border-radius: 3px; color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4); flex-shrink: 0;
}
.golpe-nome  { color: #eee; font-weight: 700; font-size: 0.82rem; flex: 1; }
.golpe-cat   { font-size: 0.7rem; flex-shrink: 0; }
.golpe-stab  {
  font-size: 0.55rem; font-weight: 800; color: #ffe033;
  background: rgba(255,224,0,0.13);
  border: 1px solid rgba(255,224,0,0.26);
  border-radius: 3px; padding: 0 4px; letter-spacing: 0.4px;
}
/* PHY / SPC category tags */
.golpe-cat-tag {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.6px;
  border-radius: 3px; padding: 1px 5px;
  flex-shrink: 0;
}
.golpe-cat-physical {
  color: #e67e22;
  background: rgba(230,126,34,0.18);
  border: 1px solid rgba(230,126,34,0.38);
}
.golpe-cat-special {
  color: #9b59b6;
  background: rgba(155,89,182,0.18);
  border: 1px solid rgba(155,89,182,0.38);
}
.golpe-desc { color: #555; font-size: 0.67rem; margin: 0 0 6px; line-height: 1.4; }
.golpe-stats-row {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.golpe-power, .golpe-acc, .golpe-pp {
  font-size: 0.65rem; color: #555; white-space: nowrap;
}
.golpe-power b, .golpe-acc b, .golpe-pp b { color: #bbb; }
.golpe-power.status-move b { color: #7ec8e3; }

/* ── MINI BARRA XP NO SLOT DO TEAM ──────────────────────── */
.raid-slot-xpbar {
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px; overflow: hidden; margin-top: 4px;
}
.raid-slot-xpbar-fill {
  height: 100%;
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  border-radius: 99px; transition: width 0.3s ease;
}

/* ── MINI BARRA HP NO SLOT DO TEAM ───────────────────────── */
.raid-slot-hpbar-wrap {
  width: 100%; margin-top: 5px; margin-bottom: 1px;
}
.raid-slot-hp-txt {
  display: block;
  font-size: 0.58rem; color: #999; text-align: right;
  margin-bottom: 2px; font-weight: 600; letter-spacing: 0.2px;
}
.raid-slot-hpbar {
  width: 100%; height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px; overflow: hidden;
}
.raid-slot-hpbar-fill {
  height: 100%; border-radius: 99px;
  transition: width 0.4s ease;
}
.raid-slot-hpbar-fill.hp-ok       { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.raid-slot-hpbar-fill.hp-low      { background: linear-gradient(90deg, #e67e22, #f1c40f); }
.raid-slot-hpbar-fill.hp-critical {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  animation: hp-pulse 1.2s ease-in-out infinite;
}

/* ── RESPONSIVO — mobile: 1 col com scroll ───────────────── */
@media (max-width: 900px) {
  .raid-modal-content.raid-modal-status-content {
    width: 99vw; max-height: 93vh;
    overflow-y: auto; padding: 36px 14px 18px;
  }
  .raid-status-3col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .raid-col {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,117,0,0.15);
  }
  .raid-col:last-child { border-bottom: none; }
  .raid-col-stats {
    border-left: none; border-right: none;
  }
}

/* ============================================================
   MY TEAM — Grid de slots
   ============================================================ */
.raid-myteam { padding: 0 4px; }
.raid-myteam-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.raid-myteam-titulo { color: #ffad00; font-size: 1rem; font-weight: 700; margin: 0; }
.raid-myteam-desc   { color: #666; font-size: 0.72rem; margin: 0 0 12px; }

/* Wrapper que agrupa os 3 botões do lado direito */
.raid-topbar-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}

.raid-pokedex-btn {
  background: rgba(255,117,0,0.12); border: 1px solid rgba(255,117,0,0.35);
  color: #ffad00; border-radius: 8px; padding: 5px 12px;
  font-size: 0.74rem; cursor: pointer; font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.raid-pokedex-btn:hover { background: rgba(255,117,0,0.25); }

/* Missions: mesma base, apenas cor roxa diferente */
.raid-pokedex-btn.raid-pokedex-btn-missions {
  background: rgba(155,89,182,0.15);
  border-color: rgba(155,89,182,0.45);
  color: #d7a2f5;
}
.raid-pokedex-btn.raid-pokedex-btn-missions:hover {
  background: rgba(155,89,182,0.28);
}

.raid-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.raid-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 6px 8px;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  min-height: 140px; position: relative;
}
.raid-slot.ocupado:hover {
  border-color: rgba(255,117,0,0.5);
  background: rgba(255,117,0,0.06);
}
.raid-slot.vazio {
  cursor: default; opacity: 0.4;
}
.raid-slot.pode-evoluir {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 0 8px rgba(255,215,0,0.15);
}
.raid-slot-numero {
  position: absolute; top: 5px; left: 8px;
  font-size: 0.6rem; color: #555; font-weight: 700;
}
.raid-slot-img {
  width: 52px; height: 52px; object-fit: contain;
  image-rendering: pixelated; margin: 4px 0;
}
.raid-slot-nome {
  font-size: 0.72rem; color: #ddd; font-weight: 600;
  margin: 2px 0 1px; text-align: center;
}
.raid-slot-nivel {
  font-size: 0.74rem; font-weight: 800;
  color: #ffb700;
  background: rgba(255,180,0,0.1);
  border: 1px solid rgba(255,180,0,0.25);
  border-radius: 5px;
  padding: 1px 7px;
  margin: 2px 0;
  display: inline-block;
}
.raid-slot-vazio-icon {
  font-size: 1.8rem; color: #333; margin: 16px 0 6px;
}
.raid-slot-vazio-texto {
  font-size: 0.65rem; color: #333;
}

/* ── BAG ──────────────────────────────────────────────────── */
.raid-bag-section { margin-top: 20px; }
.raid-bag-titulo  {
  color: #ffad00; font-size: 0.82rem; font-weight: 700; margin: 0 0 10px;
}
.raid-bag-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.raid-bag-item {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 8px 10px;
  width: 72px; text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.raid-bag-item.usavel {
  cursor: pointer;
  border-color: rgba(255,117,0,0.25);
}
.raid-bag-item.usavel:hover {
  background: rgba(255,117,0,0.1);
  border-color: rgba(255,117,0,0.5);
}
.raid-bag-img  { width: 40px; height: 40px; object-fit: contain; margin-bottom: 4px; }
.raid-bag-nome { font-size: 0.6rem; color: #bbb; line-height: 1.3; }
.raid-bag-qty  { font-size: 0.68rem; color: #ffad00; font-weight: 700; margin-top: 2px; }
.raid-bag-vazia { color: #555; font-size: 0.75rem; font-style: italic; }

/* battle-label tag for pokeball */
.bag-label-battle {
  font-size: 0.52rem; background: rgba(255,80,80,0.2);
  border: 1px solid rgba(255,80,80,0.4); color: #ff8080;
  border-radius: 3px; padding: 1px 4px; margin-bottom: 2px;
  font-weight: 700; letter-spacing: 0.3px;
}

/* ── SHINY BADGE ─────────────────────────────────────────── */
.shiny-badge {
  position: absolute; top: 4px; right: 5px;
  font-size: 0.55rem; background: linear-gradient(135deg,#ffe033,#ff9500);
  color: #1a1000; border-radius: 4px; padding: 1px 4px;
  font-weight: 800; letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .raid-slots-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   POKÉDEX MODAL
   ============================================================ */
.raid-pokedex-overlay .raid-modal-content,
.raid-pokedex-content {
  max-width: 860px; width: 95vw;
  max-height: 88vh; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 28px 24px 20px;
}
.raid-pokedex-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; flex-shrink: 0;
}
.raid-pokedex-titulo {
  color: #ffad00; font-size: 1.1rem; font-weight: 800; margin: 0;
}
.raid-pokedex-stats {
  color: #888; font-size: 0.75rem; font-weight: 600;
}
.raid-pokedex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 6px;
  overflow-y: auto;
  padding-right: 4px;
  flex: 1;
}
.raid-pokedex-grid::-webkit-scrollbar { width: 5px; }
.raid-pokedex-grid::-webkit-scrollbar-track { background: transparent; }
.raid-pokedex-grid::-webkit-scrollbar-thumb { background: rgba(255,117,0,0.3); border-radius: 99px; }

/* Cards individuais */
.pdx-card {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 6px 4px 5px;
  cursor: default; transition: background 0.15s;
  min-height: 76px;
}
.pdx-card.pdx-capturado {
  border-color: rgba(255,117,0,0.25);
  background: rgba(255,117,0,0.06);
}
.pdx-card.pdx-capturado:hover {
  background: rgba(255,117,0,0.12);
  border-color: rgba(255,117,0,0.45);
}
.pdx-num {
  font-size: 0.52rem; color: #555; font-weight: 700;
  margin-bottom: 2px; letter-spacing: 0.2px;
}
.pdx-img {
  width: 40px; height: 40px; object-fit: contain;
  image-rendering: pixelated;
}
.pdx-silhueta {
  filter: brightness(0);
  opacity: 0.25;
}
.pdx-nome {
  font-size: 0.58rem; color: #ccc; margin-top: 3px;
  text-align: center; line-height: 1.2; font-weight: 600;
}
.pdx-card.pdx-nao-visto .pdx-nome { color: #444; }
.pdx-card.pdx-nao-visto {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.05);
}
.pdx-card.pdx-vazio {
  opacity: 0.25;
}
.pdx-interrogacao {
  font-size: 1.4rem; color: #333; margin: 4px 0 2px;
}

/* ============================================================
   EVOLUTION LINE — dentro do modal de status (coluna 2)
   ============================================================ */
.evo-chain-secao {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.evo-chain-titulo {
  font-size: 0.64rem; color: #888; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.evo-chain-wrap {
  display: flex; align-items: center;
  gap: 6px; flex-wrap: wrap;
}
.evo-chain-card {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 6px 8px 5px;
  min-width: 58px; text-align: center; position: relative;
}
.evo-chain-card.evo-chain-atual {
  border-color: rgba(255,117,0,0.45);
  background: rgba(255,117,0,0.08);
}
.evo-chain-card.evo-chain-desconhecido {
  opacity: 0.45;
}
.evo-chain-num {
  font-size: 0.52rem; color: #ffad00; font-weight: 700;
  margin-bottom: 3px; letter-spacing: 0.2px;
}
.evo-chain-img {
  width: 40px; height: 40px; object-fit: contain;
  image-rendering: pixelated;
}
.evo-chain-silhueta {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #555; font-weight: 700;
}
.evo-chain-nome {
  font-size: 0.6rem; color: #ccc; margin-top: 3px;
  font-weight: 600;
}
.evo-chain-tag {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  background: rgba(255,117,0,0.85); color: #fff;
  font-size: 0.48rem; font-weight: 800; border-radius: 3px;
  padding: 1px 5px; white-space: nowrap; letter-spacing: 0.3px;
}
.evo-chain-seta {
  color: #555; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}

/* ============================================================
   MISSÕES DIÁRIAS — dentro do modal de status (coluna 3)
   ============================================================ */
.missoes-secao {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.missoes-titulo {
  font-size: 0.64rem; color: #888; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.missao-linha {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}
.missao-linha.missao-feita {
  background: rgba(46,204,113,0.07);
  border-color: rgba(46,204,113,0.2);
  opacity: 0.65;
}
.missao-linha.missao-ativa {
  background: rgba(255,117,0,0.07);
  border-color: rgba(255,117,0,0.25);
}
.missao-icone {
  font-size: 0.7rem; color: #ffad00; font-weight: 800;
  flex-shrink: 0; min-width: 20px; text-align: center;
  font-family: monospace;
}
.missao-texto {
  display: flex; flex-direction: column; gap: 1px; flex: 1;
}
.missao-label {
  font-size: 0.72rem; color: #ddd; font-weight: 600; line-height: 1.3;
}
.missao-bonus {
  font-size: 0.62rem; color: #2ecc71; font-weight: 700;
}
.missao-start-btn {
  background: rgba(255,117,0,0.15);
  border: 1px solid rgba(255,117,0,0.4);
  color: #ffad00; border-radius: 6px;
  padding: 4px 10px; font-size: 0.66rem;
  font-weight: 700; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.missao-start-btn:hover {
  background: rgba(255,117,0,0.3);
  border-color: rgba(255,117,0,0.7);
}
.missao-check {
  font-size: 0.66rem; color: #2ecc71; font-weight: 700;
  flex-shrink: 0; white-space: nowrap;
}
.missao-em-curso {
  font-size: 0.64rem; color: #ffad00; font-weight: 700;
  flex-shrink: 0; white-space: nowrap;
  animation: pulse-orange 1.5s ease-in-out infinite;
}
@keyframes pulse-orange {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ============================================================
   EV DISTRIBUTION — dentro da tabela de stats (coluna 2)
   ============================================================ */
/* Coluna EV na tabela */
.ev-th { color: #7ec8e3 !important; }
.ev-col {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; padding: 2px 4px; vertical-align: middle;
}
.raid-iv-tabela td { vertical-align: middle; }
.ev-com-valor .ev-val { color: #7ec8e3; font-weight: 800; }
.ev-val {
  font-size: 0.75rem; color: #555; min-width: 20px;
  text-align: center; font-weight: 600;
}

/* Botões +/- */
.ev-btn {
  width: 20px; height: 20px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #ccc; font-size: 0.75rem; font-weight: 900;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; line-height: 1; padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.ev-btn-plus  { color: #2ecc71; border-color: rgba(46,204,113,0.3); }
.ev-btn-minus { color: #e74c3c; border-color: rgba(231,76,60,0.3); }
.ev-btn-plus:hover  { background: rgba(46,204,113,0.18); border-color: rgba(46,204,113,0.6); }
.ev-btn-minus:hover { background: rgba(231,76,60,0.18);  border-color: rgba(231,76,60,0.6);  }
.ev-btn-placeholder { width: 20px; height: 20px; display: inline-block; }

/* Rodapé de EV Points */
.ev-rodape {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; padding: 7px 10px;
  background: rgba(126,200,227,0.07);
  border: 1px solid rgba(126,200,227,0.2);
  border-radius: 8px;
}
.ev-rodape-label {
  font-size: 0.7rem; color: #888; font-weight: 600; flex: 1;
}
.ev-rodape-val {
  font-size: 0.82rem; color: #7ec8e3; font-weight: 800;
  min-width: 24px; text-align: center;
}
.ev-confirmar-btn {
  background: rgba(126,200,227,0.15);
  border: 1px solid rgba(126,200,227,0.4);
  color: #7ec8e3; border-radius: 6px;
  padding: 4px 12px; font-size: 0.68rem;
  font-weight: 700; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.ev-confirmar-btn:hover {
  background: rgba(126,200,227,0.28);
  border-color: rgba(126,200,227,0.7);
}

/* Highlight linha na tabela ao ter EVs */
.raid-iv-tabela tbody tr:has(.ev-com-valor) {
  background: rgba(126,200,227,0.05) !important;
}

/* ============================================================
   ITEM USE MODAL — abrirUsarItem
   ============================================================ */
.raid-item-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 9999;
  align-items: center; justify-content: center;
}
.raid-item-overlay[style*="flex"] { display: flex !important; }
/* Container interno compacto — não tela toda */
.raid-item-modal {
  background: #18182a; border: 1px solid rgba(255,117,0,0.35);
  border-radius: 14px; padding: 18px 18px 14px;
  max-width: 320px; width: 90vw; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.raid-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: #888;
  font-size: 1rem; cursor: pointer; line-height: 1; padding: 2px 4px;
  transition: color 0.15s;
}
.raid-modal-close:hover { color: #ff4444; }
.raid-item-content {
  background: #1a1a2e; border: 1px solid rgba(255,117,0,0.35);
  border-radius: 16px; padding: 24px 22px;
  max-width: 420px; width: 95vw; position: relative;
}
.raid-item-titulo {
  color: #ffad00; font-size: 0.85rem; font-weight: 800; margin: 0 0 14px;
}
.iusar-wrap { display: flex; flex-direction: column; gap: 12px; }
.iusar-titulo {
  font-size: 0.84rem; color: #ddd; margin: 0 0 8px; font-weight: 600;
}
.iusar-titulo b { color: #ffad00; }
.iusar-lista { display: flex; flex-direction: column; gap: 8px; }
.iusar-slot {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.iusar-slot:not(.nao-pode):hover {
  background: rgba(255,117,0,0.1); border-color: rgba(255,117,0,0.4);
}
.iusar-slot.nao-pode { opacity: 0.35; cursor: not-allowed; }
.iusar-img { width: 40px; height: 40px; object-fit: contain; image-rendering: pixelated; }
.iusar-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.iusar-nome { font-size: 0.78rem; color: #ddd; font-weight: 700; }
.fainted-tag {
  background: rgba(231,76,60,0.25); border: 1px solid rgba(231,76,60,0.5);
  color: #e74c3c; font-size: 0.58rem; padding: 1px 5px; border-radius: 3px;
  font-weight: 800; margin-left: 5px;
}
.iusar-hpbar {
  height: 5px; background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
}
.iusar-hpfill { height: 100%; border-radius: 99px; transition: width 0.3s; }
.iusar-hpnum { font-size: 0.66rem; color: #888; }
.iusar-fechar-btn {
  width: 100%; margin-top: 10px; padding: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #888; border-radius: 8px; cursor: pointer; font-size: 0.75rem;
  transition: background 0.15s;
}
.iusar-fechar-btn:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   MOVE SWAP DIALOG — battle.js mostrarDialogTrocaGolpe
   ============================================================ */
.mswap-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.82);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
}
.mswap-box {
  background: #14142a; border: 2px solid rgba(255,117,0,0.4);
  border-radius: 16px; padding: 24px 22px; max-width: 440px; width: 95vw;
  box-shadow: 0 0 40px rgba(255,117,0,0.15);
}
.mswap-title {
  font-size: 1rem; color: #ffad00; font-weight: 900;
  display: block; margin-bottom: 10px;
}
.mswap-new {
  border: 1px solid; border-radius: 10px;
  padding: 10px 12px; margin-bottom: 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.mswap-new-name { font-size: 0.9rem; font-weight: 800; }
.mswap-new-type {
  display: inline-block; font-size: 0.58rem; font-weight: 800;
  border-radius: 4px; padding: 1px 6px; width: fit-content;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.mswap-new-stats { font-size: 0.68rem; color: #888; }
.mswap-new-desc  { font-size: 0.66rem; color: #666; font-style: italic; }
.mswap-prompt {
  font-size: 0.76rem; color: #aaa; margin: 0 0 10px;
}
.mswap-slots { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.mswap-slot {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px; border: 1px solid;
  background: rgba(255,255,255,0.03); cursor: pointer;
  transition: background 0.15s;
}
.mswap-slot:hover { background: rgba(255,255,255,0.1); }
.mswap-slot-name { font-size: 0.78rem; color: #ddd; font-weight: 700; flex: 1; }
.mswap-slot-type {
  font-size: 0.54rem; font-weight: 800; border-radius: 3px;
  padding: 1px 5px; text-transform: uppercase; letter-spacing: 0.4px;
}
.mswap-slot-stats { font-size: 0.62rem; color: #666; }
.mswap-keep-btn {
  width: 100%; padding: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #888; border-radius: 8px; cursor: pointer; font-size: 0.74rem;
  transition: background 0.15s;
}
.mswap-keep-btn:hover { background: rgba(255,255,255,0.1); color: #ccc; }

/* ── Pending move banner no modal de status ── */
.pending-move-banner {
  background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3);
  border-radius: 8px; padding: 8px 12px; margin-bottom: 10px;
  font-size: 0.72rem; color: #2ecc71; line-height: 1.5;
}
.pending-move-banner b { color: #27ae60; }

/* ── iusar modal compacto ── */
.iusar-wrap { display: flex; flex-direction: column; gap: 8px; }
.iusar-titulo {
  font-size: 0.78rem; color: #ddd; margin: 0 0 6px; font-weight: 600;
  padding-right: 20px; /* espaço para o X */
}
.iusar-titulo b { color: #ffad00; }
.iusar-lista { display: flex; flex-direction: column; gap: 6px; }
.iusar-slot {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer; transition: background 0.15s;
}
.iusar-slot:not(.nao-pode):hover { background: rgba(255,117,0,0.1); border-color: rgba(255,117,0,0.3); }
.iusar-slot.nao-pode { opacity: 0.3; cursor: not-allowed; }
.iusar-img { width: 36px; height: 36px; object-fit: contain; image-rendering: pixelated; }
.iusar-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.iusar-nome { font-size: 0.74rem; color: #ddd; font-weight: 700; }
.fainted-tag {
  display: inline-block; background: rgba(231,76,60,0.2);
  border: 1px solid rgba(231,76,60,0.4); color: #e74c3c;
  font-size: 0.55rem; padding: 0 4px; border-radius: 3px; font-weight: 800;
  margin-left: 4px; vertical-align: middle;
}
.iusar-hpbar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.iusar-hpfill { height: 100%; border-radius: 99px; }
.iusar-hpnum { font-size: 0.62rem; color: #666; }

/* ── Toast simples para itens ── */
.toast-simples {
  padding: 10px 16px !important;
  min-height: unset !important;
}
.toast-simples .toast-titulo { font-size: 0.8rem; }
.toast-ok   { border-color: rgba(46,204,113,0.4) !important; background: rgba(46,204,113,0.1) !important; }
.toast-erro { border-color: rgba(231,76,60,0.4)  !important; background: rgba(231,76,60,0.1)  !important; }

/* ── EV stat gain indicator ── */
.ev-stat-gain {
  color: #2ecc71; font-size: 0.68rem; font-weight: 800;
  margin-left: 4px; vertical-align: middle;
  animation: ev-gain-pop 0.25s ease;
}
@keyframes ev-gain-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1);   opacity: 1; }
}

/* ── EV tip note ── */


/* Fix: row highlight when stat actually changed */
.raid-iv-tabela tbody tr:has(.ev-stat-gain) {
  background: rgba(46,204,113,0.06) !important;
}


/* ════════════════════════════════════════════════════════════
   QUEST WIDGET — painel flutuante no canto inferior da tela
   ════════════════════════════════════════════════════════════ */
.raid-quest-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  width: 290px;
  background: linear-gradient(160deg, #0e0e1e 0%, #080810 100%);
  border: 2px solid rgba(255,149,0,0.55);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 8px 36px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,149,0,0.10);
  overflow: hidden;
  animation: qw-appear 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes qw-appear {
  from { transform: translateY(20px) scale(0.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.qw-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px 8px;
  background: rgba(255,149,0,0.12);
  border-bottom: 1px solid rgba(255,149,0,0.22);
}
.qw-title {
  font-size: 0.72rem; font-weight: 800; color: #ff9500;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.qw-close {
  background: none; border: none; color: #555; font-size: 0.85rem;
  cursor: pointer; padding: 0 2px; line-height: 1;
  transition: color 0.15s;
}
.qw-close:hover { color: #ff4444; }

.qw-corpo {
  padding: 10px 13px 8px;
}
.qw-label {
  font-size: 0.8rem; font-weight: 700; color: #e0e0e0;
  margin: 0 0 5px;
}
.qw-instrucao {
  font-size: 0.68rem; color: #666; margin: 0 0 7px; line-height: 1.45;
}
.qw-recompensa {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  background: rgba(255,149,0,0.07);
  border-radius: 7px;
  border: 1px solid rgba(255,149,0,0.15);
  margin-top: 4px;
}
.qw-poke {
  font-size: 0.7rem; color: #ff9500; font-weight: 700;
  flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.qw-pts {
  font-size: 0.68rem; color: #7ec8e3; font-weight: 800; white-space: nowrap;
}

.qw-done-btn {
  display: block; width: calc(100% - 24px);
  margin: 8px 12px 10px;
  padding: 9px;
  background: linear-gradient(135deg, rgba(255,149,0,0.22), rgba(255,200,0,0.10));
  border: 2px solid rgba(255,149,0,0.55);
  border-radius: 9px;
  color: #ffad00; font-size: 0.78rem; font-weight: 800;
  cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}
.qw-done-btn:hover {
  background: rgba(255,149,0,0.32); transform: scale(1.02);
}
.qw-done-btn:disabled { opacity: 0.5; cursor: default; transform: none; }

.qw-pendente {
  margin: 6px 12px 10px;
  font-size: 0.68rem; color: #555; font-style: italic;
  text-align: center;
}
.qw-check {
  margin: 6px 12px 4px;
  font-size: 0.68rem; color: #2ecc71; font-style: italic;
  text-align: center;
}
.qw-dismiss-btn {
  display: block; width: calc(100% - 24px);
  margin: 0 12px 10px;
  padding: 7px;
  background: rgba(46,204,113,0.10);
  border: 1px solid rgba(46,204,113,0.35);
  border-radius: 8px;
  color: #2ecc71; font-size: 0.72rem; font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.qw-dismiss-btn:hover { background: rgba(46,204,113,0.22); }

/* estado concluída */
.quest-concluida {
  border-color: rgba(46,204,113,0.5);
}
.quest-concluida .qw-header {
  background: rgba(46,204,113,0.10);
  border-bottom-color: rgba(46,204,113,0.20);
}
.quest-concluida .qw-title { color: #2ecc71; }

/* ── PP gasto — destaque vermelho ── */
.golpe-pp.pp-gasto b {
  color: #e74c3c !important;
}
.golpe-pp.pp-gasto {
  background: rgba(231,76,60,0.10);
  border-radius: 3px;
  padding: 0 4px;
}

/* ════════════════════════════════════════════════════════════
   CONFIRM TOAST — substitui confirm() nativo
   ════════════════════════════════════════════════════════════ */
.raid-confirm-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10500;
  background: linear-gradient(160deg, #0e0e1e, #080810);
  border: 2px solid rgba(231, 76, 60, 0.6);
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.75);
  opacity: 0;
  transition: opacity 0.2s, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.raid-confirm-toast.rct-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.rct-titulo {
  font-size: 0.88rem; font-weight: 800; color: #e74c3c;
  margin-bottom: 5px;
}
.rct-sub {
  font-size: 0.7rem; color: #777; margin-bottom: 14px; line-height: 1.45;
}
.rct-btns {
  display: flex; gap: 10px;
}
.rct-btn {
  flex: 1; padding: 8px;
  border-radius: 8px; border: none;
  font-size: 0.76rem; font-weight: 800;
  cursor: pointer; transition: background 0.15s, transform 0.1s;
}
.rct-btn:hover { transform: scale(1.03); }
.rct-cancel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #888;
}
.rct-cancel:hover { background: rgba(255,255,255,0.10); color: #ccc; }
.rct-confirm {
  background: rgba(231,76,60,0.18);
  border: 1px solid rgba(231,76,60,0.5);
  color: #e74c3c;
}
.rct-confirm:hover { background: rgba(231,76,60,0.32); }

/* ════════════════════════════════════════════════════════════
   ITEM INFO MODAL — botão direito nos itens da bag
   ════════════════════════════════════════════════════════════ */
.iinfo-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 4px 0;
}
.iinfo-img {
  width: 56px; height: 56px; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,149,0,0.3));
}
.iinfo-nome {
  font-size: 0.95rem; font-weight: 800; color: #ffad00;
  margin: 0; text-align: center;
}
.iinfo-cat {
  font-size: 0.6rem; color: #888; text-transform: uppercase;
  letter-spacing: 0.8px; border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 7px; border-radius: 4px;
}
.iinfo-desc {
  font-size: 0.72rem; color: #bbb; text-align: center;
  line-height: 1.5; margin: 4px 0;
}
.iinfo-footer {
  display: flex; gap: 12px; align-items: center;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px; width: 100%;
  justify-content: space-between;
}
.iinfo-uso { font-size: 0.65rem; color: #666; }
.iinfo-qty { font-size: 0.75rem; color: #7ec8e3; font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   ETHER MOVE SELECT MODAL — selecionar golpe para recuperar PP
   ════════════════════════════════════════════════════════════ */
.ether-modal-overlay {
  position: fixed; inset: 0; z-index: 10200;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
  animation: fadeInEther 0.18s ease;
}
@keyframes fadeInEther {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.ether-modal-box {
  background: linear-gradient(160deg, #0f0f1e, #080811);
  border: 2px solid rgba(155,89,182,0.55);
  border-radius: 16px;
  padding: 20px;
  width: 320px;
  max-width: 95vw;
  box-shadow: 0 12px 48px rgba(0,0,0,0.8), 0 0 0 1px rgba(155,89,182,0.1);
}
.ether-modal-header {
  margin-bottom: 14px;
}
.ether-modal-titulo {
  display: block; font-size: 0.88rem; font-weight: 800;
  color: #c39bd3; margin-bottom: 3px;
}
.ether-modal-sub {
  display: block; font-size: 0.65rem; color: #666;
}
.ether-move-lista {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.ether-move-slot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: rgba(155,89,182,0.08);
  border: 1px solid rgba(155,89,182,0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ether-move-slot:hover:not(.ether-full) {
  background: rgba(155,89,182,0.18);
  border-color: rgba(155,89,182,0.5);
}
.ether-move-slot.ether-full {
  opacity: 0.38; cursor: not-allowed;
}
.ether-move-left {
  display: flex; align-items: center; gap: 8px;
}
.ether-move-type {
  font-size: 0.52rem; font-weight: 800; color: #fff;
  padding: 2px 5px; border-radius: 3px;
  letter-spacing: 0.4px; white-space: nowrap;
}
.ether-move-nome {
  font-size: 0.78rem; font-weight: 700; color: #ddd;
}
.ether-move-pp {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
  min-width: 90px;
}
.ether-pp-bar {
  width: 80px; height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px; overflow: hidden;
}
.ether-pp-fill {
  height: 100%; border-radius: 3px;
  transition: width 0.3s;
}
.ether-pp-num {
  font-size: 0.6rem; font-weight: 700;
}
.ether-full-tag {
  font-size: 0.55rem; color: #555;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1px 5px; border-radius: 3px;
}
.ether-restore-tag {
  font-size: 0.58rem; color: #9b59b6; font-weight: 800;
  background: rgba(155,89,182,0.15);
  border: 1px solid rgba(155,89,182,0.3);
  padding: 1px 5px; border-radius: 3px;
}
.ether-cancel-btn {
  display: block; width: 100%;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #666; font-size: 0.72rem; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
}
.ether-cancel-btn:hover { background: rgba(255,255,255,0.08); color: #aaa; }

/* ============================================================
   POKÉDEX — MODAL DE DETALHE
   ============================================================ */
.pdx-detalhe-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(0,0,0,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s;
}
.pdx-detalhe-overlay.show { opacity: 1; pointer-events: auto; }

.pdx-detalhe-box {
  background: #1a1a1a;
  border: 1px solid rgba(255,117,0,0.3);
  border-radius: 14px;
  width: min(520px, 95vw);
  max-height: 88vh;
  overflow-y: auto;
  padding: 22px 22px 18px;
  position: relative;
  box-shadow: 0 0 40px rgba(255,117,0,0.15);
  transform: translateY(14px);
  transition: transform 0.22s;
}
.pdx-detalhe-overlay.show .pdx-detalhe-box { transform: translateY(0); }

.pdx-detalhe-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: #888;
  font-size: 1.1rem; cursor: pointer; line-height: 1;
  transition: color 0.15s;
}
.pdx-detalhe-close:hover { color: #fff; }

/* Header */
.pdx-detalhe-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.pdx-detalhe-sprite {
  width: 72px; height: 72px; object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 2px 8px rgba(255,117,0,0.3));
}
.pdx-detalhe-num { font-size: 0.65rem; color: #666; display: block; margin-bottom: 2px; }
.pdx-detalhe-nome { font-size: 1.25rem; color: #ff9040; font-weight: 700; margin: 0 0 6px; }
.pdx-detalhe-tipos { display: flex; gap: 5px; flex-wrap: wrap; }

/* Tabs */
.pdx-detalhe-tabs {
  display: flex; gap: 4px; margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
}
.pdx-tab {
  background: none; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; color: #888; font-size: 0.72rem;
  padding: 5px 10px; cursor: pointer; transition: all 0.15s;
}
.pdx-tab:hover { color: #ccc; border-color: rgba(255,255,255,0.2); }
.pdx-tab.active { background: rgba(255,117,0,0.18); color: #ff9040; border-color: rgba(255,117,0,0.4); }

/* Panels */
.pdx-detalhe-panel { display: none; }
.pdx-detalhe-panel.active { display: block; }
.pdx-empty { color: #555; font-size: 0.8rem; text-align: center; padding: 20px 0; }

/* Stats panel */
.pdx-stat-row {
  display: grid;
  grid-template-columns: 68px 36px 1fr;
  align-items: center; gap: 8px;
  margin-bottom: 7px;
}
.pdx-stat-label { font-size: 0.7rem; color: #999; text-align: right; font-weight: 600; }
.pdx-stat-val   { font-size: 0.75rem; color: #ddd; font-weight: 700; text-align: right; }
.pdx-stat-bar-bg {
  height: 10px; background: rgba(255,255,255,0.06);
  border-radius: 5px; overflow: hidden;
}
.pdx-stat-bar-fill {
  height: 100%; border-radius: 5px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.pdx-stat-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem; color: #888;
}
.pdx-stat-total strong { color: #ff9040; font-size: 0.85rem; }

/* Catch rate */
.pdx-catch-section {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pdx-catch-label { font-size: 0.68rem; color: #888; white-space: nowrap; min-width: 68px; text-align: right; }
.pdx-catch-bar-bg {
  flex: 1; height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.pdx-catch-bar-fill { height: 100%; border-radius: 4px; }
.pdx-catch-val { font-size: 0.65rem; white-space: nowrap; font-weight: 700; min-width: 100px; }

/* Moves panel */
.pdx-move-header {
  display: grid;
  grid-template-columns: 36px 1fr 60px 30px 36px 40px;
  gap: 4px; padding: 0 4px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.6rem; color: #666; font-weight: 700; text-transform: uppercase;
}
.pdx-move-list { max-height: 320px; overflow-y: auto; }
.pdx-move-row {
  display: grid;
  grid-template-columns: 36px 1fr 60px 30px 36px 40px;
  gap: 4px; padding: 6px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center; font-size: 0.72rem;
}
.pdx-move-row:hover { background: rgba(255,255,255,0.03); }
.pdx-move-lvl   { color: #888; font-size: 0.65rem; }
.pdx-move-name  { color: #ddd; font-weight: 600; }
.pdx-move-type  {
  font-size: 0.56rem; font-weight: 700;
  padding: 2px 5px; border-radius: 3px;
  color: #fff; text-align: center; letter-spacing: 0.3px;
}
.pdx-move-cat   { text-align: center; font-size: 0.8rem; }
.pdx-move-pow   { color: #f08030; text-align: center; font-weight: 700; }
.pdx-move-acc   { color: #888; text-align: center; }

/* Abilities panel */
.pdx-ability-list { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.pdx-ability-row {
  background: rgba(255,255,255,0.04); border-radius: 8px;
  padding: 9px 12px; border-left: 3px solid rgba(255,117,0,0.3);
}
.pdx-ability-hidden { border-left-color: rgba(168,64,160,0.6); }
.pdx-ability-nome { display: block; font-size: 0.78rem; color: #ff9040; font-weight: 700; margin-bottom: 3px; }
.pdx-ability-hidden .pdx-ability-nome { color: #c060c0; }
.pdx-ability-desc { font-size: 0.68rem; color: #888; line-height: 1.4; }
.pdx-ha-tag {
  display: inline-block; font-size: 0.55rem; background: rgba(168,64,160,0.35);
  color: #c060c0; border-radius: 3px; padding: 1px 4px; margin-left: 4px;
  font-weight: 700; vertical-align: middle; letter-spacing: 0.3px;
}

/* Evolution panel */
.pdx-evo-chain {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px; padding: 8px 0;
}
.pdx-evo-step {
  display: flex; align-items: center; gap: 6px;
}
.pdx-evo-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 10px 12px; border: 1px solid rgba(255,255,255,0.07);
  min-width: 70px;
}
.pdx-evo-atual .pdx-evo-card {
  border-color: rgba(255,117,0,0.45);
  background: rgba(255,117,0,0.08);
}
.pdx-evo-nome { font-size: 0.65rem; color: #ccc; font-weight: 600; text-align: center; }
.pdx-evo-arrow {
  display: flex; flex-direction: column; align-items: center;
  color: #555; font-size: 1rem;
}
.pdx-evo-arrow span { font-size: 0.58rem; color: #ff9040; margin-bottom: 2px; white-space: nowrap; }

/* ============================================================
   BATTLE — ANIMAÇÕES DE GOLPE
   ============================================================ */

/* Sprite de impacto do golpe (aparece em cima do alvo) */
.move-impact-sprite {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  object-fit: contain;
  pointer-events: none;
  z-index: 20;
  animation: moveImpactAnim 0.15s ease-out;
}
@keyframes moveImpactAnim {
  from { transform: translate(-50%,-50%) scale(0.4); opacity: 0.6; }
  to   { transform: translate(-50%,-50%) scale(1);   opacity: 1;   }
}

/* Dash do pokémon do player (avança à frente e volta) */
@keyframes pokeDash {
  0%   { transform: translateX(0)     scaleX(1);   }
  30%  { transform: translateX(-22px) scaleX(0.92); }
  60%  { transform: translateX(-4px)  scaleX(1.05); }
  100% { transform: translateX(0)     scaleX(1);   }
}
.poke-dash { animation: pokeDash 0.35s ease-in-out; }

/* Dash do boss (avança à frente e volta — direção oposta) */
@keyframes bossDash {
  0%   { transform: translateX(0)    scaleX(1);   }
  30%  { transform: translateX(22px) scaleX(0.92); }
  60%  { transform: translateX(4px)  scaleX(1.05); }
  100% { transform: translateX(0)    scaleX(1);   }
}
.boss-dash { animation: bossDash 0.35s ease-in-out; }

/* ── Pokédex Detalhe — Shiny Toggle ──────────────────────── */
.pdx-detalhe-sprite-wrap {
  position: relative; flex-shrink: 0;
}
.pdx-shiny-glow {
  position: absolute; inset: -4px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,40,0) 40%, rgba(255,220,40,0) 100%);
  pointer-events: none; transition: background 0.4s;
}
.pdx-shiny-glow.active {
  background: radial-gradient(circle, rgba(255,220,40,0.25) 40%, rgba(255,220,40,0) 100%);
  animation: shinyPulse 1.8s ease-in-out infinite;
}
@keyframes shinyPulse {
  0%,100% { opacity: 0.7; }
  50%      { opacity: 1;   }
}
.pdx-shiny-btn {
  margin-top: 7px;
  background: rgba(255,220,40,0.1);
  border: 1px solid rgba(255,220,40,0.3);
  border-radius: 6px; color: #ffe033;
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; cursor: pointer;
  transition: all 0.18s; display: block;
}
.pdx-shiny-btn:hover {
  background: rgba(255,220,40,0.2);
  border-color: rgba(255,220,40,0.6);
}
.pdx-shiny-btn.active {
  background: rgba(255,220,40,0.18);
  border-color: #ffe033;
  box-shadow: 0 0 10px rgba(255,220,40,0.25);
}

/* ── Setas de navegação entre pokémons no modal ─────────────── */
.raid-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,117,0,0.12);
  border: 2px solid rgba(255,117,0,0.35);
  border-radius: 50%;
  color: #ff7500;
  font-size: 1.4rem;
  font-weight: 700;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  z-index: 10;
  line-height: 1;
}
.raid-nav-arrow:hover {
  background: rgba(255,117,0,0.28);
  border-color: #ff7500;
  box-shadow: 0 0 12px rgba(255,117,0,0.35);
}
.raid-nav-left  { left: 10px; }
.raid-nav-right { right: 10px; }

/* ── Data de captura ────────────────────────────────────────── */
.raid-captured-date {
  margin-top: 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,117,0,0.12);
  padding-top: 8px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   STAND-BY — Pokémon em espera quando o time está cheio
   ══════════════════════════════════════════════════════════ */
.raid-standby-section {
  margin-top: 16px;
  background: rgba(255, 60, 60, 0.06);
  border: 1.5px solid rgba(255, 60, 60, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  animation: standby-pulse 2s ease-in-out infinite;
}
@keyframes standby-pulse {
  0%, 100% { border-color: rgba(255, 60, 60, 0.35); }
  50%       { border-color: rgba(255, 60, 60, 0.7); box-shadow: 0 0 12px rgba(255,60,60,0.15); }
}
.raid-standby-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.raid-standby-icon { font-size: 1.1rem; }
.raid-standby-titulo {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff6060;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.raid-standby-aviso {
  margin-left: auto;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.standby-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255,60,60,0.05);
  border: 1px solid rgba(255,60,60,0.2);
  transition: all 0.18s;
}
.standby-inner:hover {
  background: rgba(255,60,60,0.12);
  border-color: rgba(255,60,60,0.45);
}
.standby-img-wrap { position: relative; flex-shrink: 0; }
.standby-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255,60,60,0.3));
}
.standby-info { flex: 1; }
.standby-nome {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  text-transform: capitalize;
}
.standby-tipos { margin-bottom: 4px; }
.standby-nivel {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.standby-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 56px;
}
.standby-timer-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.standby-timer {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff7500;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}

/* ═══════════════════════════════════════════════════
   PLAYER LEVEL WIDGET
═══════════════════════════════════════════════════ */
.player-level-widget {
  background: linear-gradient(135deg, rgba(255,180,0,0.12), rgba(255,120,0,0.08));
  border: 1px solid rgba(255,180,0,0.35);
  border-radius: 12px;
  padding: 10px 14px 8px;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.plw-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plw-label {
  font-size: 0.72rem;
  color: #ffb700;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plw-nivel {
  font-size: 1rem;
  font-weight: 800;
  color: #ffe066;
  text-shadow: 0 0 8px rgba(255,200,0,0.5);
}
.plw-bar-bg {
  width: 100%;
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.plw-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffb700, #ff6a00);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.plw-xp-label {
  font-size: 0.65rem;
  color: rgba(255,200,100,0.65);
  text-align: right;
}

/* ═══════════════════════════════════════════════════
   DRAG & DROP — Reordenação do time
═══════════════════════════════════════════════════ */
.raid-slot[draggable="true"] {
  cursor: grab;
}
.raid-slot[draggable="true"]:active {
  cursor: grabbing;
}
.raid-slot.drag-dragging {
  opacity: 0.45;
  transform: scale(0.95);
  border: 2px dashed rgba(255,180,0,0.7) !important;
}
.raid-slot.drag-over {
  border: 2px solid #ffb700 !important;
  background: rgba(255,180,0,0.12) !important;
  transform: scale(1.04);
  transition: transform 0.1s, border 0.1s;
}

/* ═══════════════════════════════════════════════════
   STANDBY RELEASE BUTTON
═══════════════════════════════════════════════════ */
.standby-release-btn {
  display: block;
  width: calc(100% - 16px);
  margin: 6px 8px 2px;
  padding: 6px;
  background: rgba(200, 40, 40, 0.18);
  border: 1px solid rgba(200,60,60,0.4);
  border-radius: 8px;
  color: #ff7070;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.standby-release-btn:hover {
  background: rgba(200,40,40,0.35);
  color: #ffaaaa;
}
.standby-release-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Poison status badge no slot ─────────────────────────── */
.raid-slot-status-psn {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 900;
  color: #cc44cc;
  background: rgba(160, 40, 160, 0.18);
  border: 1px solid rgba(160,40,160,0.4);
  border-radius: 4px;
  padding: 1px 5px;
  margin: 1px 0;
  letter-spacing: 0.05em;
  animation: psn-pulse 1.2s ease-in-out infinite alternate;
}
@keyframes psn-pulse {
  from { opacity: 0.7; }
  to   { opacity: 1; border-color: rgba(200,60,200,0.8); }
}

/* ══════════════════════════════════════════════════════════════
   EVOLUTION MODAL
══════════════════════════════════════════════════════════════ */
.evo-modal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 18px;
}
.evo-antes, .evo-depois {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.evo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 14px rgba(255,180,0,0.4));
}
.evo-img-de {
  opacity: 0.55;
  filter: grayscale(0.4) drop-shadow(0 0 6px rgba(255,255,255,0.1));
}
.evo-img-para {
  animation: evo-glow-pulse 1.2s ease-in-out infinite alternate;
}
@keyframes evo-glow-pulse {
  from { filter: drop-shadow(0 0 10px rgba(255,200,0,0.5)); }
  to   { filter: drop-shadow(0 0 26px rgba(255,180,0,1)); }
}
.evo-nome-de {
  font-size: 0.7rem;
  color: #888;
  font-weight: 600;
  text-decoration: line-through;
}
.evo-nome-para {
  font-size: 0.88rem;
  color: #ffe066;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.evo-seta {
  font-size: 1.8rem;
  color: #ffb700;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255,180,0,0.8);
  flex-shrink: 0;
}
.evo-tipos {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2px;
}
.evo-info {
  background: rgba(255,180,0,0.06);
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.evo-info-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}
.evo-info-label {
  color: #aaa;
  font-weight: 700;
  min-width: 68px;
}
.evo-info-val {
  color: #ffe066;
  font-weight: 800;
}
.evo-info-val.evo-hidden {
  color: #c080ff;
}
.evo-fechar-btn {
  display: block;
  width: 100%;
  padding: 11px 0;
  background: linear-gradient(135deg, #ff9500, #ffb700);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(255,150,0,0.35);
}
.evo-fechar-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 22px rgba(255,150,0,0.55);
}

/* ── Evolve button no card de status ──────────────────────── */
.evo-btn-disponivel {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 0;
  background: linear-gradient(135deg, rgba(255,210,0,0.15), rgba(255,150,0,0.1));
  border: 2px solid rgba(255,180,0,0.55);
  border-radius: 10px;
  color: #ffe066;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 0 14px rgba(255,180,0,0.15);
  animation: evo-btn-pulse 1.5s ease-in-out infinite alternate;
}
@keyframes evo-btn-pulse {
  from { box-shadow: 0 0 10px rgba(255,180,0,0.15); border-color: rgba(255,180,0,0.45); }
  to   { box-shadow: 0 0 22px rgba(255,200,0,0.45); border-color: rgba(255,200,0,0.85); }
}
.evo-btn-disponivel:hover {
  background: rgba(255,180,0,0.2);
  transform: scale(1.02);
}
.evo-btn-disponivel:disabled {
  opacity: 0.5; cursor: default; animation: none;
}


/* ══════════════════════════════════════════════════════════════
   INFO MODAL — Boss Event  (redesign)
══════════════════════════════════════════════════════════════ */
.info-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  padding: 12px;
}
.info-modal-overlay.show {
  opacity: 1; pointer-events: all;
}
.info-modal-box {
  background: linear-gradient(170deg, #0c0c18 0%, #10101e 60%, #0c0c18 100%);
  border: 2px solid rgba(255,117,0,0.45);
  border-radius: 22px;
  padding: 0 0 20px;
  width: min(520px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.38s cubic-bezier(.22,1,.36,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,117,0,0.3) transparent;
  box-shadow: 0 0 80px rgba(255,100,0,0.12), 0 30px 80px rgba(0,0,0,0.6);
}
.info-modal-overlay.show .info-modal-box {
  transform: translateY(0) scale(1);
}
.info-modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 5;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #aaa; border-radius: 8px;
  width: 28px; height: 28px;
  font-size: 0.7rem; font-weight: 900;
  cursor: pointer; transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.info-modal-close:hover { background: rgba(255,60,60,0.35); color: #fff; }

/* ── Hero image ─────────────────────────────────────────── */
.info-hero-wrap {
  position: relative;
  width: 100%; height: 180px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
  flex-shrink: 0;
}
.info-event-hero {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85) saturate(1.1);
}
.info-hero-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(12,12,24,0.92) 100%);
  pointer-events: none;
}

/* ── Event meta ─────────────────────────────────────────── */
.info-event-nome {
  text-align: center;
  font-size: 1.25rem; font-weight: 900;
  color: #ffe066;
  text-shadow: 0 0 18px rgba(255,200,0,0.55);
  margin: 14px 20px 3px;
  line-height: 1.2;
}
.info-event-datas {
  text-align: center;
  font-size: 0.64rem; color: #777; font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.info-event-desc {
  font-size: 0.73rem; color: #b8b8c8; line-height: 1.6;
  text-align: center; margin: 0 22px 14px;
}
.info-divider {
  width: calc(100% - 40px); height: 1px; margin: 0 20px 16px;
  background: linear-gradient(90deg, transparent, rgba(255,117,0,0.4), transparent);
}
/* ── Boss cards ─────────────────────────────────────────── */
.info-bosses-wrap {
  display: flex; flex-direction: column;
  gap: 10px; padding: 0 16px;
}
.info-boss-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,117,0,0.2);
  border-radius: 14px;
  overflow: hidden;
}
.info-boss-header {
  display: flex; align-items: center;
  gap: 12px; padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-boss-sprite {
  width: 52px; height: 52px;
  object-fit: contain; image-rendering: pixelated;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255,150,0,0.4));
}
.info-boss-title-wrap {
  flex: 1; min-width: 0;
}
.info-boss-nome {
  font-size: 0.9rem; font-weight: 900; color: #fff;
  margin-right: 6px;
}
.info-boss-lv {
  font-size: 0.6rem; font-weight: 800; color: #ffb700;
  background: rgba(255,180,0,0.1);
  border: 1px solid rgba(255,180,0,0.25);
  border-radius: 4px; padding: 1px 5px;
  vertical-align: middle;
}
.info-boss-stars {
  font-size: 0.65rem; margin: 2px 0 5px;
  letter-spacing: 2px;
}
.info-boss-moves-inline {
  display: flex; flex-wrap: wrap; gap: 3px;
}
.info-move-tag {
  font-size: 0.55rem; font-weight: 700; color: #ccc;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 2px 6px;
}

/* ── Drops grid com imagens ─────────────────────────────── */
.info-drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 6px; padding: 8px 12px 10px;
}
.info-drop-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 5px 8px;
  transition: background 0.15s;
}
.info-drop-chip:hover {
  background: rgba(255,180,0,0.06);
  border-color: rgba(255,180,0,0.2);
}
.info-drop-img {
  width: 26px; height: 26px;
  object-fit: contain; image-rendering: pixelated;
  flex-shrink: 0;
}
.info-drop-noimg {
  font-size: 1.1rem; flex-shrink: 0; width: 26px; text-align: center;
}
.info-drop-text {
  display: flex; flex-direction: column; min-width: 0;
}
.info-drop-name {
  font-size: 0.6rem; font-weight: 700; color: #ddd;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 70px;
}
.info-drop-pct {
  font-size: 0.58rem; font-weight: 900;
  color: #ffb700;
}
