.gd-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--cursor-color, #4b0e1e);
    border-radius: 9999px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    transition: all 0.18s ease;
    background: transparent;
    display: none;
}

.gd-cursor.is-active {
    width: var(--cursor-size, 80px);
    height: var(--cursor-size, 80px);
    background: var(--cursor-color, #4b0e1e);
    border-color: var(--cursor-color, #4b0e1e);
}

.gd-cursor__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    font-size: var(--cursor-font-size, 12px);
    font-weight: var(--cursor-font-weight, 600);
    font-family: var(--cursor-font-family, inherit);
    line-height: var(--cursor-line-height, 1);
    user-select: none;
}

.gd-cursor.is-active .gd-cursor__label {
    opacity: 1;
}
