.custom-cursor__dot,
.custom-cursor__ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 999999;
    will-change: transform;
}

.custom-cursor__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
    transform: translate(-100px, -100px);
    transition:
        width 0.2s ease,
        height 0.2s ease,
        background 0.2s ease,
        border-radius 0.2s ease,
        opacity 0.2s ease;
}

.custom-cursor__ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(231, 76, 60, 0.65);
    background: transparent;
    transform: translate(-100px, -100px);
    transition:
        width 0.25s ease,
        height 0.25s ease,
        border-color 0.25s ease,
        opacity 0.3s ease;
    z-index: 999998;
}

.custom-cursor__dot.is-visible,
.custom-cursor__ring.is-visible {
    opacity: 1;
}

.custom-cursor__ring.is-interactive {
    width: 52px;
    height: 52px;
    border-color: rgba(231, 76, 60, 0.9);
}

.custom-cursor__dot.is-interactive {
    width: 4px;
    height: 4px;
}

.custom-cursor__ring.is-dark {
    border-color: rgba(255, 255, 255, 0.6);
}

.custom-cursor__dot.is-dark {
    background: rgba(255, 255, 255, 0.9);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .custom-cursor__dot,
    .custom-cursor__ring {
        display: none;
    }
}
