/* Star Level 5 — Сияющая звезда (гало + дыхание) */
.star-5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: star5Glow 7s ease-in-out infinite;
}
.star-5::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 220, 240, 0.25) 0%, rgba(200, 200, 240, 0.08) 40%, rgba(180, 180, 220, 0) 70%);
    animation: star5Halo 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes star5Glow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(220, 220, 240, 0.6)) drop-shadow(0 0 12px rgba(180, 180, 220, 0.3)); }
    50% { filter: drop-shadow(0 0 10px rgba(240, 240, 255, 0.9)) drop-shadow(0 0 20px rgba(200, 200, 240, 0.6)) drop-shadow(0 0 30px rgba(180, 180, 220, 0.3)); }
}

@keyframes star5Halo {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.12); }
}
