/* ── POWERS PAGE ── */

.lore-card p { font-size: 12px; color: var(--c-ash); line-height: 1.8; }

.powers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.power-card {
  background: var(--pill);
  backdrop-filter: blur(14px);
  border: 1px solid var(--pill-b);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 0 16px var(--pill-glow);
}
.power-card:hover {
  border-color: rgba(176,40,64,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 36px rgba(0,0,0,0.55), 0 0 24px rgba(176,40,64,0.16);
}

/* ORB */
.power-orb {
  width: 48px; height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px currentColor);
  animation: orb-breathe 3.5s ease-in-out infinite;
}
.power-orb svg { width: 100%; height: 100%; display: block; }

.orb-blood  { color: rgba(192,24,40,0.7);  animation-delay: 0s; }
.orb-sun    { color: rgba(200,144,48,0.7); animation-delay: 0.6s; }
.orb-night  { color: rgba(72,56,160,0.7);  animation-delay: 1.2s; }
.orb-charm  { color: rgba(176,48,112,0.7); animation-delay: 0.3s; }
.orb-manor  { color: rgba(48,88,72,0.7);   animation-delay: 0.9s; }
.orb-memory { color: rgba(96,112,152,0.7); animation-delay: 1.5s; }

@keyframes orb-breathe {
  0%, 100% { filter: drop-shadow(0 0 6px currentColor) brightness(1); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 14px currentColor) brightness(1.15); transform: scale(1.06); }
}

.power-name {
  font-family: var(--font-cine);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-frost);
  margin-bottom: 2px;
  letter-spacing: 0.06em;
}
.power-tier {
  font-family: var(--font-head);
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--c-crimson);
  margin-bottom: 6px;
}
.power-desc {
  font-size: 11.5px;
  color: var(--c-ash);
  line-height: 1.7;
}

/* WEAKNESSES */
.weak-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.weak-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184,176,184,0.07);
}
.weak-item:last-child { border-bottom: none; }

.weak-orb {
  width: 32px; height: 32px;
  flex-shrink: 0;
  animation: orb-breathe 4s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(180,160,160,0.4));
}
.weak-orb svg { width: 100%; height: 100%; display: block; }

.weak-item strong {
  font-family: var(--font-cine);
  font-size: 11.5px;
  color: var(--c-linen);
  display: block;
  margin-bottom: 3px;
}
.weak-item p { font-size: 11px; color: var(--c-stone); line-height: 1.6; }

.cursor-glow {
  position: fixed; z-index: 9001; pointer-events: none;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,40,64,0.07) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  mix-blend-mode: screen;
  transition: left 0.08s ease, top 0.08s ease;
}
