.custom-cursor {
    position: fixed; top: 0; left: 0; width: 8px; height: 8px;
    background: #ff6b00; border-radius: 50%; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}
.custom-cursor-ring {
    position: fixed; top: 0; left: 0; width: 40px; height: 40px;
    border: 1px solid rgba(255, 107, 0, 0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}
.custom-cursor.hovering { width: 12px; height: 12px; }
.custom-cursor-ring.hovering {
    width: 60px; height: 60px; border-color: rgba(255, 107, 0, 0.8);
    background: rgba(255, 107, 0, 0.1); backdrop-filter: blur(2px);
}
body.hide-cursor, body.hide-cursor * { cursor: none !important; }
