.pokemon-reveal-card:has(.pokedex-card__rarity--legendary) .pokemon-reveal-card__sprite-frame,
.pokemon-reveal-card:has(.pokemon-rarity-badge[data-rarity="legendary"]) .pokemon-reveal-card__sprite-frame {
    position: relative;
}

.pokemon-reveal-card:has(.pokedex-card__rarity--special) .pokemon-reveal-card__sprite-frame,
.pokemon-reveal-card:has(.pokemon-rarity-badge[data-rarity="special"]) .pokemon-reveal-card__sprite-frame {
    position: relative;
}

.pokemon-reveal-card:has(.pokedex-card__rarity--legendary) .pokemon-reveal-card__sprite-frame::after,
.pokemon-reveal-card:has(.pokemon-rarity-badge[data-rarity="legendary"]) .pokemon-reveal-card__sprite-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(244, 208, 111, 0.24), rgba(199, 55, 55, 0.08) 58%, transparent 74%);
    filter: blur(10px);
    z-index: 0;
    animation: pokemonLegendaryPulse 2.2s ease-in-out infinite;
}

.pokemon-reveal-card:has(.pokedex-card__rarity--special) .pokemon-reveal-card__sprite-frame::after,
.pokemon-reveal-card:has(.pokemon-rarity-badge[data-rarity="special"]) .pokemon-reveal-card__sprite-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.24), rgba(20, 184, 166, 0.08) 58%, transparent 74%);
    filter: blur(10px);
    z-index: 0;
    animation: pokemonLegendaryPulse 2.2s ease-in-out infinite;
}

.pokemon-reveal-card:has(.pokedex-card__rarity--legendary) .pokemon-reveal-card__sprite-frame img,
.pokemon-reveal-card:has(.pokemon-rarity-badge[data-rarity="legendary"]) .pokemon-reveal-card__sprite-frame img {
    position: relative;
    z-index: 1;
}

.pokemon-reveal-card:has(.pokedex-card__rarity--special) .pokemon-reveal-card__sprite-frame img,
.pokemon-reveal-card:has(.pokemon-rarity-badge[data-rarity="special"]) .pokemon-reveal-card__sprite-frame img {
    position: relative;
    z-index: 1;
}
