/* ============================================================
   Spellcaster: The Rescue — spellcaster-bcb98.web.app
   Paleta derivada de los assets del juego:
   noche arcana, pergamino, oro del logo y cian de los esqueletos
   ============================================================ */
:root {
  --night-950: #100a22;
  --night-900: #160e2e;
  --night-800: #1e1440;
  --night-700: #2b1d5e;
  --leather: #46290f;
  --leather-deep: #331d0a;
  --parchment: #e9c684;
  --parchment-hi: #f6dfae;
  --parchment-lo: #c79a52;
  --gold: #ffb52e;
  --gold-bright: #ffd166;
  --gold-deep: #b06a14;
  --arcane: #8a5cf6;
  --arcane-soft: #b79bff;
  --cyan: #3ee6f0;
  --ink: #2e1a08;
  --text: #efe7ff;
  --text-dim: #b9aede;
  --radius: 18px;
  --shadow-card: 0 10px 30px rgba(8, 4, 24, .55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--night-900);
  color: var(--text);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, .display { font-family: 'Fredoka', 'Nunito', sans-serif; }

a { color: var(--gold-bright); }

/* ---------- Navegación ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  padding: 10px 22px;
  background: rgba(16, 10, 34, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 92, 246, .25);
}
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.nav__links a {
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .92rem;
  color: var(--text-dim); text-decoration: none;
  padding: 7px 12px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--gold-bright); background: rgba(255, 181, 46, .12); }
.nav__cta {
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--ink) !important; background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  padding: 8px 16px !important; border-radius: 999px; text-decoration: none;
  box-shadow: 0 3px 0 var(--gold-deep);
}
.nav__cta:hover { filter: brightness(1.06); background: linear-gradient(180deg, var(--gold-bright), var(--gold)) !important; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 70px 20px 90px;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(138, 92, 246, .35), transparent 65%),
    radial-gradient(800px 500px at 85% 80%, rgba(62, 230, 240, .08), transparent 60%),
    var(--night-950);
  overflow: hidden;
  cursor: crosshair;
}
#trail { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero__logo { width: min(680px, 88vw); margin: 0 auto 8px; filter: drop-shadow(0 12px 40px rgba(255, 181, 46, .35)); }
.hero__sub {
  font-family: 'Fredoka', sans-serif; font-weight: 500;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  color: var(--parchment-hi);
  text-shadow: 0 2px 14px rgba(138, 92, 246, .8);
  margin-bottom: 10px;
}
.hero__hint { color: var(--text-dim); font-size: .95rem; margin-bottom: 30px; }
.hero__hint .glow { color: var(--cyan); font-weight: 700; }

.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  width: 220px; height: 62px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #241a4e, #181039);
  border: 1.5px solid rgba(255, 209, 102, .45);
  border-radius: 14px;
  padding: 10px 18px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform .18s, border-color .18s;
}
.store-btn span { min-width: 0; }
.store-btn small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.store-btn strong { white-space: nowrap; }
@media (max-width: 500px) { .store-btn { width: min(220px, 90vw); } }
.store-btn:hover { transform: translateY(-3px); border-color: var(--gold-bright); }
.store-btn svg { width: 28px; height: 28px; fill: var(--gold-bright); flex-shrink: 0; }
.store-btn small { display: block; font-size: .68rem; color: var(--text-dim); text-align: left; line-height: 1.2; }
.store-btn strong { display: block; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--text); text-align: left; line-height: 1.25; }

.hero__xerthriz {
  width: clamp(130px, 18vw, 210px);
  position: absolute; z-index: 1;
  right: clamp(8px, 6vw, 90px); bottom: 30px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .6));
  animation: float 5.5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(2deg); } }

/* ---------- Secciones ---------- */
.section { padding: 86px 22px; max-width: 1120px; margin: 0 auto; }
.section--full { max-width: none; padding-left: 0; padding-right: 0; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(62, 230, 240, .4);
  border-radius: 999px; padding: 4px 14px; margin-bottom: 14px;
}
.section__head h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.6rem); font-weight: 600;
  color: var(--gold-bright);
  text-shadow: 0 3px 0 rgba(64, 30, 0, .8), 0 6px 24px rgba(255, 181, 46, .25);
  margin-bottom: 12px;
}
.section__head p { color: var(--text-dim); }

/* ---------- Historia ---------- */
.story { display: grid; grid-template-columns: 1.2fr .8fr; gap: 46px; align-items: center; }
.story__text p { margin-bottom: 16px; }
.story__text strong { color: var(--gold-bright); }
.story__text em { color: var(--arcane-soft); font-style: normal; font-weight: 700; }
.story__villain {
  position: relative; text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(138, 92, 246, .3), transparent 70%);
  border-radius: var(--radius);
}
.story__villain img {
  width: min(320px, 80%); margin: 0 auto;
  border-radius: 24px;
  border: 3px solid var(--night-700);
  box-shadow: var(--shadow-card), 0 0 50px rgba(62, 230, 240, .15);
}
.story__villain figcaption { margin-top: 12px; font-family: 'Fredoka', sans-serif; color: var(--arcane-soft); font-size: .95rem; }

/* ---------- Características ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.feature {
  background: linear-gradient(180deg, var(--night-800), var(--night-900));
  border: 1px solid rgba(138, 92, 246, .3);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.feature__icon { width: 52px; margin-bottom: 14px; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5)); }
.feature h3 { font-size: 1.12rem; font-weight: 600; color: var(--parchment-hi); margin-bottom: 6px; }
.feature p { font-size: .94rem; color: var(--text-dim); }

/* ---------- Hechizos (pergaminos) ---------- */
.spellbook-bg {
  background: linear-gradient(180deg, var(--leather-deep), var(--leather) 18%, var(--leather) 82%, var(--leather-deep));
  border-top: 6px solid var(--gold-deep);
  border-bottom: 6px solid var(--gold-deep);
}
.spellbook-bg .section__head h2 { color: var(--gold-bright); }
.spellbook-bg .section__head p { color: #d8b98c; }
.spells { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 22px; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.spell {
  position: relative;
  background:
    radial-gradient(140% 100% at 50% 0%, var(--parchment-hi) 0%, var(--parchment) 55%, var(--parchment-lo) 100%);
  border-radius: 12px;
  border: 2.5px solid #8a5a1d;
  box-shadow: inset 0 0 0 3px rgba(255, 245, 220, .45), var(--shadow-card);
  padding: 22px 16px 18px;
  text-align: center;
  color: var(--ink);
  transition: transform .18s;
}
.spell:hover { transform: translateY(-5px) rotate(-.5deg); }
.spell__symbol { width: 84px; margin: 0 auto 10px; filter: drop-shadow(0 3px 0 rgba(60, 30, 0, .35)); }
.spell h3 { font-size: 1.18rem; font-weight: 600; }
.spell__level {
  position: absolute; top: 10px; right: 10px;
  font-family: 'Fredoka', sans-serif; font-size: .76rem; font-weight: 600;
  background: var(--night-800); color: var(--gold-bright);
  border-radius: 999px; padding: 3px 10px;
  border: 1.5px solid var(--gold);
}
.spell__meta { margin-top: 8px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Fredoka', sans-serif; font-size: .82rem; font-weight: 600;
  background: rgba(70, 41, 15, .14);
  border: 1.5px solid rgba(70, 41, 15, .35);
  border-radius: 999px; padding: 3px 11px;
}
.chip svg { width: 14px; height: 14px; }
.chip--summon { background: rgba(138, 92, 246, .18); border-color: rgba(110, 60, 220, .45); color: #4a2d8f; }

/* ---------- Símbolos arcanos ---------- */
.symbols { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 16px; }
.symbol {
  background: linear-gradient(180deg, var(--night-700), var(--night-800));
  border: 1px solid rgba(62, 230, 240, .25);
  border-radius: 16px;
  padding: 18px 10px;
  display: grid; place-items: center;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.symbol img { width: 56px; filter: drop-shadow(0 0 0 transparent); transition: filter .2s; }
.symbol:hover { transform: scale(1.08); border-color: var(--cyan); box-shadow: 0 0 26px rgba(62, 230, 240, .35); }
.symbol:hover img { filter: drop-shadow(0 0 10px var(--cyan)); }

/* ---------- Héroes ---------- */
.heroes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.hero-card {
  background: linear-gradient(180deg, var(--night-800), var(--night-900));
  border: 1.5px solid rgba(255, 181, 46, .3);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .18s, border-color .18s;
}
.hero-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.hero-card--main { border-color: var(--gold-bright); background: linear-gradient(180deg, #2c1f56, var(--night-900)); }
.hero-card__avatar { width: 168px; margin: -8px auto 6px; filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .55)); transition: transform .25s; }
.hero-card:hover .hero-card__avatar { transform: scale(1.06); }
.hero-card h3 { font-size: 1.4rem; font-weight: 600; color: var(--gold-bright); }
.hero-card__class { font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .92rem; color: var(--cyan); margin-bottom: 8px; }
.hero-card__desc { font-size: .92rem; color: var(--text-dim); margin-bottom: 14px; min-height: 3.2em; }
.hero-card__addons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.addon {
  width: 46px; height: 46px;
  background: rgba(138, 92, 246, .15);
  border: 1px solid rgba(138, 92, 246, .4);
  border-radius: 12px;
  display: grid; place-items: center;
  position: relative;
}
.addon img { width: 34px; height: 34px; object-fit: contain; }
.addon::after {
  content: attr(data-name);
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--night-950); color: var(--parchment-hi);
  font-size: .7rem; font-family: 'Fredoka', sans-serif;
  padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(138, 92, 246, .5);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s;
}
.addon:hover::after { opacity: 1; }
.tag-main {
  display: inline-block; margin-bottom: 8px;
  font-family: 'Fredoka', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 999px; padding: 3px 12px;
}

/* ---------- Bestiario ---------- */
.bestiary-bg { background: radial-gradient(900px 500px at 50% 0%, rgba(62, 230, 240, .07), transparent 60%), var(--night-950); }
.enemies { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.enemy {
  background: linear-gradient(180deg, var(--night-800), var(--night-900));
  border: 1px solid rgba(62, 230, 240, .22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s, border-color .18s;
}
.enemy:hover { transform: translateY(-5px); border-color: var(--cyan); }
.enemy__img {
  background: radial-gradient(circle at 50% 45%, rgba(62, 230, 240, .16), rgba(43, 29, 94, .25) 55%, transparent 75%);
  padding: 18px 18px 0;
}
.enemy__img img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .55)); transition: transform .25s; }
.enemy:hover .enemy__img img { transform: scale(1.05); }
.enemy__body { padding: 16px 18px 18px; }
.enemy h3 { font-size: 1.2rem; font-weight: 600; color: var(--parchment-hi); display: flex; align-items: center; gap: 8px; }
.enemy__type { font-size: .72rem; font-family: 'Fredoka', sans-serif; font-weight: 500; color: var(--arcane-soft); border: 1px solid rgba(138, 92, 246, .45); border-radius: 999px; padding: 2px 9px; }
.enemy p { font-size: .88rem; color: var(--text-dim); margin: 6px 0 12px; }
.enemy__stats { display: flex; gap: 8px; flex-wrap: wrap; }
.stat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Fredoka', sans-serif; font-size: .82rem; font-weight: 600;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px; padding: 4px 11px;
}
.stat svg { width: 14px; height: 14px; }
.stat--hp svg { fill: #ff5d6c; } .stat--hp { color: #ffb3ba; }
.stat--xp svg { fill: var(--cyan); } .stat--xp { color: #aef3f7; }
.stat--coin svg { fill: var(--gold-bright); } .stat--coin { color: var(--gold-bright); }

/* ---------- Descarga final ---------- */
.download {
  text-align: center;
  padding: 96px 22px;
  background:
    radial-gradient(700px 380px at 50% 100%, rgba(255, 181, 46, .14), transparent 70%),
    var(--night-900);
}
.download h2 {
  font-size: clamp(1.9rem, 4.6vw, 2.8rem); font-weight: 600;
  color: var(--gold-bright);
  text-shadow: 0 3px 0 rgba(64, 30, 0, .8);
  margin-bottom: 10px;
}
.download p { color: var(--text-dim); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(138, 92, 246, .25);
  background: var(--night-950);
  padding: 44px 22px 34px;
}
.footer__inner { max-width: 1120px; margin: 0 auto; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.footer__studio { display: flex; align-items: center; gap: 14px; }
.footer__studio img { width: 64px; }
.footer__studio strong { font-family: 'Fredoka', sans-serif; font-weight: 600; display: block; }
.footer__studio small { color: var(--text-dim); }
.footer__links { margin-left: auto; display: flex; gap: 20px; flex-wrap: wrap; font-size: .9rem; }
.footer__links a { color: var(--text-dim); text-decoration: none; }
.footer__links a:hover { color: var(--gold-bright); }
.footer__copy { width: 100%; text-align: center; margin-top: 26px; font-size: .8rem; color: #6e6396; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .hero__xerthriz { position: static; margin: 26px auto 0; }
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- Selector de idioma ---------- */
.lang { display: flex; gap: 4px; margin-left: 10px; }
.lang button {
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .78rem;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid rgba(138, 92, 246, .35);
  border-radius: 8px;
  padding: 5px 9px;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.lang button:hover { color: var(--gold-bright); border-color: var(--gold); }
.lang button.is-active { color: var(--ink); background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-color: var(--gold); }

/* ---------- Descripción de hechizos ---------- */
.spell__desc { font-size: .84rem; line-height: 1.45; color: #5a3c14; margin-top: 6px; min-height: 4.2em; }

/* ---------- Stat de velocidad ---------- */
.stat--spd svg { fill: var(--arcane-soft); } .stat--spd { color: var(--arcane-soft); }

@media (max-width: 560px) { .lang { margin-left: auto; } .nav__links { margin-left: 0; } }

/* ---------- Logros ---------- */
.achs { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 14px; }
.ach {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(180deg, var(--night-800), var(--night-900));
  border: 1px solid rgba(255, 181, 46, .25);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color .15s, transform .15s;
}
.ach:hover { border-color: var(--gold); transform: translateY(-3px); }
.ach__trophy {
  flex-shrink: 0; width: 42px; height: 42px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(255, 209, 102, .3), rgba(255, 181, 46, .08));
  border: 1px solid rgba(255, 181, 46, .4);
  border-radius: 12px;
}
.ach__trophy svg { width: 22px; height: 22px; fill: var(--gold-bright); }
.ach h3 { font-size: 1rem; font-weight: 600; color: var(--parchment-hi); }
.ach p { font-size: .86rem; color: var(--text-dim); margin-top: 2px; }

/* ---------- Precio del héroe y chips extra ---------- */
.hero-card__price { margin-bottom: 14px; }
.chip--hero {
  background: rgba(255, 181, 46, .12);
  border-color: rgba(255, 181, 46, .4);
  color: var(--gold-bright);
}
.chip--hero svg { width: 13px; }
.chip--gold { background: rgba(176, 106, 20, .16); }

/* ---------- Tooltips ricos de addons ---------- */
.addon { cursor: default; }
.addon::after { content: none; }
.addon__tip {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(calc(-50% + var(--tip-shift, 0px)));
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: max-content;
  max-width: min(210px, 78vw);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  background: var(--night-950);
  border: 1.5px solid rgba(138, 92, 246, .6);
  border-radius: 10px;
  padding: 9px 13px;
  opacity: 0; pointer-events: none;
  transition: opacity .15s;
  z-index: 30;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .55);
}
.addon__tip::after {
  content: '';
  position: absolute; top: 100%; left: calc(50% - var(--tip-shift, 0px));
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(138, 92, 246, .6);
}
.addon__tip > div { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.addon:hover .addon__tip, .addon:focus .addon__tip, .addon:focus-within .addon__tip { opacity: 1; }
.addon__tip b { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .78rem; color: var(--parchment-hi); }
.addon__boost {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .8rem;
  color: var(--cyan);
}
.addon__boost img { width: 18px; height: 18px; }

/* ---------- Símbolos de derrota en el bestiario ---------- */
.enemy__killedby {
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .76rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan) !important;
  margin: 14px 0 6px !important;
}
.enemy__syms { display: flex; gap: 6px; flex-wrap: wrap; }
.enemy__syms img {
  width: 30px; height: 30px; object-fit: contain;
  background: rgba(62, 230, 240, .08);
  border: 1px solid rgba(62, 230, 240, .25);
  border-radius: 8px;
  padding: 4px;
}

/* ---------- Regiones ---------- */
.regions { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.region {
  background: linear-gradient(180deg, var(--night-700), var(--night-800));
  border: 1.5px solid rgba(255, 181, 46, .3);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform .18s, border-color .18s;
}
.region:hover { transform: translateY(-4px); border-color: var(--gold); }
.region h3 { font-size: 1.45rem; font-weight: 600; color: var(--gold-bright); margin-bottom: 12px; }
.region__stats { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ---------- Íconos oficiales del juego ---------- */
.gicon { width: 17px; height: 17px; object-fit: contain; display: inline-block; vertical-align: -3px; }
.stat .gicon { width: 16px; height: 16px; }
.spell .gicon { width: 15px; height: 15px; }
.ach__trophy .gicon { width: 26px; height: 26px; }
.ach__rewards { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.chip--gem { background: rgba(62, 230, 240, .1); border-color: rgba(62, 230, 240, .4); color: var(--cyan); }
.chip--xp2 { background: rgba(255, 181, 46, .1); border-color: rgba(255, 181, 46, .4); color: var(--gold-bright); }
.ach__sync { color: var(--arcane-soft); font-size: .9em; }

/* ---------- Imágenes de regiones ---------- */
.region { padding-top: 20px; }
.region__img {
  width: 86%; aspect-ratio: 1; object-fit: contain;
  margin: 0 auto 12px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .55));
  transition: transform .25s;
}
.region:hover .region__img { transform: translateY(-6px) scale(1.04); }

/* ---------- Símbolos del proyectil ---------- */
.enemy__killedby--proj { color: var(--arcane-soft) !important; margin-top: 10px !important; }
.enemy__syms--proj img { background: rgba(138, 92, 246, .1); border-color: rgba(138, 92, 246, .35); }


/* ---------- Precio en gemas ---------- */
.chip--gems { background: rgba(62, 230, 240, .1); border-color: rgba(62, 230, 240, .45); color: var(--cyan); }
