/* Edge Cursor Hint Styling */
#edge-cursor-hint {
    display: none;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    /* Above cursor tooltip */
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#edge-cursor-hint span {
    font-size: 20px;
}

/* Show only on desktop-like hover-capable devices */
@media (hover: hover) {
    #edge-cursor-hint.active {
        display: flex;
        opacity: 1;
    }
}