/**
 * Avatar frame rarity tokens — glow, shadow, animation speed, card styling.
 */

.nx-rarity--common {
	--nx-rarity-glow: rgba(180, 180, 180, 0.45);
	--nx-rarity-accent: #b0b0b0;
	--nx-rarity-speed: 5s;
	--nx-afe-glow: 0 0 12px rgba(180, 180, 180, 0.25);
}

.nx-rarity--rare {
	--nx-rarity-glow: rgba(110, 168, 255, 0.55);
	--nx-rarity-accent: #6ea8ff;
	--nx-rarity-speed: 4s;
	--nx-afe-glow: 0 0 16px rgba(110, 168, 255, 0.35);
}

.nx-rarity--epic {
	--nx-rarity-glow: rgba(168, 85, 247, 0.55);
	--nx-rarity-accent: #a855f7;
	--nx-rarity-speed: 3.5s;
	--nx-afe-glow: 0 0 20px rgba(168, 85, 247, 0.4);
	--nx-afe-reflect-opacity: 0.42;
}

.nx-rarity--legendary {
	--nx-rarity-glow: rgba(255, 107, 53, 0.6);
	--nx-rarity-accent: #ff6b35;
	--nx-rarity-speed: 3s;
	--nx-afe-glow: 0 0 24px rgba(255, 107, 53, 0.45);
	--nx-afe-scale-hover: 1.05;
}

.nx-rarity--mythic {
	--nx-rarity-glow: rgba(255, 45, 85, 0.65);
	--nx-rarity-accent: #ff2d55;
	--nx-rarity-speed: 2.5s;
	--nx-afe-glow: 0 0 28px rgba(255, 45, 85, 0.5);
	--nx-afe-scale-hover: 1.06;
}

.nx-mp-rarity {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: var(--nx-rarity-accent, #d4af37);
}

.nx-mp-rarity--common { --nx-rarity-accent: #b0b0b0; }
.nx-mp-rarity--rare { --nx-rarity-accent: #6ea8ff; }
.nx-mp-rarity--epic { --nx-rarity-accent: #a855f7; }
.nx-mp-rarity--legendary { --nx-rarity-accent: #ff6b35; }
.nx-mp-rarity--mythic { --nx-rarity-accent: #ff2d55; }
