#portal-living {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.portal-spirit,
.portal-feather,
.portal-butterfly {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.portal-spirit {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    filter: blur(.4px);
}

.portal-spirit.blue {
    background: radial-gradient(
        circle,
        rgba(145, 195, 255, .9),
        rgba(145, 195, 255, 0) 70%
    );
    box-shadow:
        0 0 8px rgba(145, 195, 255, .75),
        0 0 18px rgba(145, 195, 255, .35);
}

.portal-spirit.gold {
    background: radial-gradient(
        circle,
        rgba(255, 226, 150, .9),
        rgba(255, 226, 150, 0) 70%
    );
    box-shadow:
        0 0 8px rgba(255, 226, 150, .75),
        0 0 18px rgba(255, 226, 150, .35);
}

.portal-feather {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: rgba(255,255,255,.75);
    filter: drop-shadow(0 0 5px rgba(255,255,255,.55));
}

.portal-butterfly {
    width: 28px;
    height: 28px;
    font-size: 26px;
    filter: drop-shadow(0 0 6px rgba(180,150,220,.40));
}

@media (max-width: 768px) {
    .portal-feather {
        font-size: 19px;
    }

    .portal-butterfly {
        font-size: 20px;
    }
}