#premiumParticles {
    position: fixed;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0.42;
    pointer-events: none;
}

.premium-cursor,
.premium-cursor-dot,
.premium-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000005;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.premium-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(84, 245, 154, 0.72);
    background: radial-gradient(circle, rgba(84,245,154,.07), transparent 66%);
    box-shadow: 0 0 22px rgba(46, 204, 113, 0.22);
    transition: width .28s ease, height .28s ease, border-color .28s ease, background .28s ease;
}

.premium-cursor::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 2px;
    height: 6px;
    border-radius: 2px;
    background: rgba(224, 255, 238, 0.78);
    transform: translateX(-50%);
}

.premium-cursor-dot {
    width: 5px;
    height: 5px;
    background: #54f59a;
    box-shadow: 0 0 12px rgba(84,245,154,.88);
}

.premium-cursor-trail {
    width: 7px;
    height: 7px;
    background: rgba(84, 245, 154, 0.34);
    box-shadow: 0 0 12px rgba(84,245,154,.32);
}

.premium-cursor.is-hovering {
    width: 56px;
    height: 56px;
    border-color: rgba(84, 245, 154, 0.22);
    background: radial-gradient(circle, rgba(84,245,154,.12), rgba(84,245,154,.025) 64%, transparent 70%);
}

@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, [role="button"], input, textarea, select { cursor: none !important; }
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
    #premiumParticles { opacity: 0.2; }
    .premium-cursor,
    .premium-cursor-dot,
    .premium-cursor-trail { display: none !important; }
    body { cursor: auto; }
}
