#marseem-angel {
    width: 70px;
    height: auto;
    z-index: 99999;
    display: none;
    pointer-events: none;
    position: fixed;
}

#marseem-angel::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(6px);
    pointer-events: none;
}

.marseem-burst {
    position: fixed;
    font-size: 20px;
    color: #FFD700;
    pointer-events: none;
    z-index: 99999;
}

.marseem-angel-glow {
    animation: glow-pulse 1s ease-in-out 3;
}

.marseem-dot-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 99998; /* behind angel */
}

@keyframes glow-pulse {
    0% { box-shadow:0 0 0px #FFD700; }
    50% { box-shadow:0 0 12px #FFD700; }
    100% { box-shadow:0 0 0px #FFD700; }
}
